Skip to content

Commit

Permalink
ci: run build/lint/test on nodejs v18, v20; ubuntu-latest (#147)
Browse files Browse the repository at this point in the history
* chore(ci): build,lint,test on node v18, v20
* chore(ci): run on ubuntu-latest instead of ubuntu-20.04
  • Loading branch information
legobeat committed Mar 11, 2024
1 parent 147e95b commit 5facba9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-lint-test.yml
Expand Up @@ -8,10 +8,10 @@ on:
jobs:
build-lint-test:
name: Build, Lint, and Test
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [12.x, 14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -24,7 +24,7 @@ jobs:
- run: yarn test
all-jobs-pass:
name: All jobs pass
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs:
- build-lint-test
steps:
Expand Down

0 comments on commit 5facba9

Please sign in to comment.