mirror of
https://github.com/Wolvan/poll.horse.git
synced 2024-11-25 22:18:00 +01:00
af8163541a
A couple of github action files have been added that (hopefully) run tests and CI for the docker images on push to dev and master.
28 lines
No EOL
581 B
YAML
28 lines
No EOL
581 B
YAML
name: Run tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ dev, master ]
|
|
pull_request:
|
|
branches: [ dev ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [10.x, 12.x, 14.x, 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 run build --if-present
|
|
- run: npm test |