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 87bc4d3 commit 6fcf69cCopy full SHA for 6fcf69c
.github/workflows/tests.yaml
@@ -11,11 +11,15 @@ jobs:
11
tests:
12
name: Tests
13
runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ # https://github.com/nodejs/Release#release-schedule
17
+ node: [ 14, 16, 18, 19 ]
18
steps:
19
- uses: actions/checkout@v3
20
- uses: actions/setup-node@v3
21
with:
- node-version: '16.x'
22
+ node-version: ${{ matrix.node }}
23
- name: "Run tests"
24
env:
25
OKTA_DUMMY_CI_PW: ${{ secrets.OKTA_DUMMY_CI_PW }}
@@ -35,7 +39,8 @@ jobs:
35
39
# Setup .npmrc file to publish to npm
36
40
37
41
38
42
+ # latest lts
43
+ node-version: 18
44
registry-url: 'https://registry.npmjs.org'
45
- run: npm ci && npm run build
46
- run: npm publish
0 commit comments