Skip to content

Commit

Permalink
chore: update nodejs CI
Browse files Browse the repository at this point in the history
  • Loading branch information
parksb committed Jul 27, 2023
1 parent bb7cf82 commit b5cd847
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x]
node-version: [10, 12, 14, 16, 18]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
- name: npm install and build
run: |
npm ci
npm test
npm install
npm run build
env:
CI: true

0 comments on commit b5cd847

Please sign in to comment.