Skip to content

Commit

Permalink
fix(ci): match the node version
Browse files Browse the repository at this point in the history
  • Loading branch information
favoyang committed Feb 6, 2024
1 parent c97497a commit a55dad0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.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: [12.x]
node-version: [18.x]
name: CI - node ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v1
- name: set node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: yarn install
run: yarn install
- name: yarn test
run: yarn test
- uses: actions/checkout@v4
- name: set node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm test
run: npm test

0 comments on commit a55dad0

Please sign in to comment.