mirror of
https://github.com/altcha-org/altcha.git
synced 2026-01-25 04:16:41 +00:00
22 lines
458 B
YAML
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"
|