Skip to content

Commit

Permalink
ci: update matrix (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed Sep 27, 2022
1 parent fc549fc commit be672f8
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
keyv: ['3.x', '4.x']
node: ['12.x', '14.x', '15.x']
node: ['12.x', '14.x', '16.x', '18.x']
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install Node.js ${{matrix.node}}
uses: actions/setup-node@v2-beta
uses: actions/setup-node@v3
with:
node-version: ${{matrix.node}}
- name: Configure Firestore credentials
Expand All @@ -35,12 +36,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Install Node.js 14.x
uses: actions/setup-node@v2-beta
- name: Install Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: '18.x'
- name: Run standard
run: npm run test:lint

0 comments on commit be672f8

Please sign in to comment.