Skip to content

Commit

Permalink
ci: run on Node.js 20 and run build
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavohenke committed Jan 30, 2024
1 parent f52017e commit a260b24
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
# a more recent Node.js version
fail-fast: false
matrix:
node: [14, 16, 18]
node: [14, 16, 18, 20]
steps:
- name: Check out
uses: actions/checkout@v3
Expand All @@ -21,6 +21,8 @@ jobs:
uses: ./.github/actions/npm-cache
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Submit coverage
Expand Down

0 comments on commit a260b24

Please sign in to comment.