mirror of https://github.com/Fabio286/antares.git
27 lines
462 B
YAML
27 lines
462 B
YAML
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
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
|
|
- name: Install dependencies
|
|
run: npm i
|
|
|
|
- name: Run tests
|
|
run: npm run test:e2e
|