Skip to content

Commit

Permalink
ci: add node 18 (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Oct 31, 2022
1 parent 5084dae commit 969dacc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -15,7 +15,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [14, 16]
node: [14, 16, 18]
fail-fast: false

steps:
- uses: actions/checkout@v3
Expand All @@ -36,6 +37,8 @@ jobs:

- name: Install Webpack 4
run: pnpm i webpack@4
if: ${{ matrix.node != 18 }}

- name: Test with Webpack 4
run: pnpm run test
if: ${{ matrix.node != 18 }}

0 comments on commit 969dacc

Please sign in to comment.