Skip to content

Commit

Permalink
chore: update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
nghaninn committed Nov 11, 2024
1 parent e287c55 commit de78bce
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,29 @@ name: "Tests"

jobs:
run-tests:
name: Run Tests Node ${{ matrix.node }}
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 18, 20 ]
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test:ci

test-build:
name: Test Build Node ${{ matrix.node }}
name: Test Build
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 18, 20 ]
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build

0 comments on commit de78bce

Please sign in to comment.