2022-06-12 19:58:22 +02:00
|
|
|
name: Test end-to-end [LINUX]
|
2022-05-07 23:20:31 +02:00
|
|
|
|
|
|
|
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-05-07 23:20:31 +02:00
|
|
|
|
2022-08-01 18:06:57 +02:00
|
|
|
- name: Install Node.js
|
|
|
|
uses: actions/setup-node@v3
|
2022-05-07 23:20:31 +02:00
|
|
|
with:
|
2022-08-01 18:06:57 +02:00
|
|
|
node-version: 16
|
2022-05-07 23:20:31 +02:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm i
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: npm run test:e2e
|