2023-12-25 11:40:52 +01:00
|
|
|
name: Test end-to-end
|
2022-05-07 23:20:31 +02:00
|
|
|
|
2023-07-31 10:55:05 +02:00
|
|
|
on:
|
2024-06-10 08:52:00 +02:00
|
|
|
workflow_dispatch: {}
|
|
|
|
# push:
|
|
|
|
# branches:
|
|
|
|
# - develop
|
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:
|
2024-01-05 11:14:05 +01:00
|
|
|
node-version: 20
|
2022-05-07 23:20:31 +02:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm i
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: npm run test:e2e
|