Skip to content

Commit

Permalink
chore: Test on LTS versions of Node
Browse files Browse the repository at this point in the history
  • Loading branch information
arv committed Nov 7, 2024
1 parent 249f668 commit 731d17a
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 19.x]
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v3
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Dependencies
run: |
sudo apt-get update
sudo apt-get install binaryen
yarn
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test Coverage
run: yarn test-coverage
- name: Bundle Size
run: yarn size
- uses: actions/checkout@v3
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Dependencies
run: |
sudo apt-get update
sudo apt-get install binaryen
yarn
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test Coverage
run: yarn test-coverage
- name: Bundle Size
run: yarn size

0 comments on commit 731d17a

Please sign in to comment.