2022-12-19 08:54:20 +01:00
|
|
|
name: Test end-to-end [WINDOWS]
|
2022-05-07 23:20:31 +02:00
|
|
|
|
2023-07-31 10:55:05 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2022-05-07 23:20:31 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-12-03 17:53:16 +01:00
|
|
|
os: [windows-latest]
|
2022-05-07 23:20:31 +02:00
|
|
|
|
|
|
|
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
|