Skip to content

Commit

Permalink
Merge 369ff87 into cc05586
Browse files Browse the repository at this point in the history
  • Loading branch information
bezoerb committed Apr 10, 2023
2 parents cc05586 + 369ff87 commit 595e0b2
Show file tree
Hide file tree
Showing 6 changed files with 2,260 additions and 1,700 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/test.yml
Expand Up @@ -13,26 +13,20 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [14.x, 16.x]
node: [14, 16, 18]
os: [ubuntu-latest, windows-latest]

steps:
- name: Clone repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

- name: Set up npm cache
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-v${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-v${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
${{ runner.OS }}-node-v${{ matrix.node }}-
cache: npm

- name: Install npm dependencies
run: npm ci
Expand Down
1 change: 1 addition & 0 deletions .npmrc
@@ -0,0 +1 @@
lockfile-version=2

0 comments on commit 595e0b2

Please sign in to comment.