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

27 lines
465 B
YAML
Raw Normal View History

2022-12-19 08:54:20 +01:00
name: Test end-to-end [WINDOWS]
on: push
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
2022-12-03 17:53:16 +01:00
os: [windows-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