poll.horse/.github/workflows/run-tests.yml
Wolvan 934112de95 Only run tests on npm version 7+
NPM 7 introduced `set-script` which is needed to avoid running the
prepublish script on installation.
2022-02-04 22:19:57 +01:00

28 lines
No EOL
563 B
YAML

name: Run tests
on:
push:
branches: [ dev, master ]
pull_request:
branches: [ dev ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm set-script prepublish ""
- run: npm ci
- run: npm test
- run: npm run build --if-present