We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e66d054 commit 3825ac0Copy full SHA for 3825ac0
.github/workflows/release.yml
@@ -7,7 +7,7 @@ on:
7
- 'alpha'
8
jobs:
9
build-test-publish:
10
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-22.04
11
steps:
12
- uses: actions/checkout@v3
13
with:
.github/workflows/test.yml
@@ -2,15 +2,19 @@ name: Build and Test NODE
2
on: [pull_request, workflow_dispatch, push]
3
4
build-test:
5
6
+ strategy:
+ matrix:
+ version: [ 14, 16, 18 ]
fetch-depth: 0
- - name: Use Node.js
+
14
+ - name: "Setup node with cache"
15
uses: actions/setup-node@v3
16
- node-version: 14
17
+ node-version: ${{ matrix.version }}
18
cache: 'yarn'
19
20
- run: yarn install --frozen-lockfile
0 commit comments