Skip to content

Commit

Permalink
Update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesBHuff committed Dec 15, 2023
1 parent 45786f8 commit aa87ed4
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,16 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{matrix.node-version}}
uses: actions/setup-node@v3
working-directory: ./frontend
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
cache: 'npm'
cache-dependency-path: './frontend/npm-shrinkwrap.json'
node-version-file: './frontend/.nvmrc'
- run: npm ci
working-directory: ./frontend
# - run: npm run check
- run: npm run check
working-directory: ./frontend
- run: npm run build
working-directory: ./frontend

0 comments on commit aa87ed4

Please sign in to comment.