Skip to content

Commit

Permalink
ci: node.js 20
Browse files Browse the repository at this point in the history
  • Loading branch information
mnasyrov committed Sep 8, 2023
1 parent 4fde1d9 commit 2d6423c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '19'
node-version: '20'
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install dependencies
Expand Down
26 changes: 4 additions & 22 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
node-version: '20'
- name: Prepare
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Test
Expand All @@ -22,24 +20,8 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

test-compatibility:
needs: test
runs-on: ubuntu-latest
strategy:
matrix:
node: ['16', '18']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build

test-deno:
needs: test
Expand Down

0 comments on commit 2d6423c

Please sign in to comment.