Files
altcha/.github/workflows/ci.yml
Daniel Regeci 1e3ddf9d61 v2
2025-05-19 10:14:37 +02:00

22 lines
458 B
YAML

name: ci
on:
push:
branches: [main, next]
pull_request:
branches: ['*']
jobs:
tests:
name: 'Tests'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
- run: npm install
- run: npm run test
- uses: DevExpress/testcafe-action@latest
with:
args: "chrome,firefox e2e/altcha.fixture.ts --hostname localhost"