revproxy-presentation/.github/workflows/js.yml

25 lines
431 B
YAML
Raw Normal View History

2020-02-24 11:12:56 +01:00
name: tests
2020-02-13 10:06:11 +01:00
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2020-08-19 10:33:36 +02:00
node-version: [10.x, 14.x]
2020-02-13 10:06:11 +01:00
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true