Skip to content

Commit

Permalink
try to improve efficiency of build step
Browse files Browse the repository at this point in the history
  • Loading branch information
joshreisner committed Oct 11, 2024
1 parent f8af94f commit a4df76b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
- run: npm install
- run: npm ci
- run: npm run test-coverage
- run: npm run build

Expand Down

0 comments on commit a4df76b

Please sign in to comment.