Skip to content

Release v1.1.2

Release v1.1.2 #13

Workflow file for this run

name: Test
on:
pull_request:
push:
jobs:
test:
name: Main
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- uses: actions/cache@v4
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install npm dependencies
# See https://github.com/npm/cli/issues/4828
run: rm package-lock.json && npm i
- run: npm test