antares/.github/workflows/test-e2e-linux.yml

27 lines
462 B
YAML
Raw Normal View History

name: Test end-to-end [LINUX]
on: push
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Check out Git repository
2022-08-01 18:06:57 +02:00
uses: actions/checkout@v3
2022-08-01 18:06:57 +02:00
- name: Install Node.js
uses: actions/setup-node@v3
with:
2022-08-01 18:06:57 +02:00
node-version: 16
- name: Install dependencies
run: npm i
- name: Run tests
run: npm run test:e2e