Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenyeargin committed Jun 5, 2023
1 parent 7439b61 commit b38d23f
Show file tree
Hide file tree
Showing 3 changed files with 934 additions and 1,006 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,28 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [16.x, 18.x, 20.x]

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, build, and test

- name: npm install, build
run: |
npm install
npm ci
npm run build --if-present
env:
CI: true

- name: npm test
run: |
npm test
env:
CI: true

Loading

0 comments on commit b38d23f

Please sign in to comment.