webapp/.github/workflows/node-ci.yml
Untone 402f66468b
Some checks failed
deploy / Linting (push) Failing after 51s
deploy / Run end-to-end tests (push) Failing after 1m36s
deploy / Update templates on Mailgun (push) Has been skipped
deploy / Github (push) Failing after 1s
ci-fix
2024-02-04 13:28:12 +03:00

39 lines
837 B
YAML

name: CI
on: [push]
jobs:
Linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install dependencies
run: npm ci
- name: Lint styles
run: npm run lint:styles
- name: Check types
run: npm run typecheck
- name: Install Biome
run: npm install --global --save-exact @biomejs/biome
- name: Lint with Biome
run: npx biome ci .
Playwright:
name: Run end-to-end tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install dependencies
run: npm ci
- name: Install playwright browsers
run: npx playwright install --with-deps
- name: Run Playwright Test
run: npx playwright test