Skip to content

Commit

Permalink
[CI] Modernize Github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bcherny committed May 2, 2024
1 parent e53bb80 commit add8ee1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: yarn install --ignore-engines --verbose
run: npm ci
- name: Run tests
run: yarn test
run: npm test
env:
CI: true

0 comments on commit add8ee1

Please sign in to comment.