Skip to content

Commit

Permalink
chore: upgrade CI nodejs to 18
Browse files Browse the repository at this point in the history
  • Loading branch information
slowbackspace committed Oct 2, 2024
1 parent 9a004ce commit 36095c8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn run lint
- run: yarn run type-check
- run: yarn run test
- run: yarn run build
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn run lint
- run: yarn run type-check
- run: yarn run test
- run: yarn run build

0 comments on commit 36095c8

Please sign in to comment.