Skip to content

Merge branch 'refs/heads/main' into feature/playwright #1596

Merge branch 'refs/heads/main' into feature/playwright

Merge branch 'refs/heads/main' into feature/playwright #1596

Workflow file for this run

name: Smart Forms Workflow
on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 16.x
uses: actions/setup-node@v4
with:
node-version: 16
cache: npm
- name: Install dependencies
run: npm ci
- name: Build application
run: npm run build -w apps/smart-forms-app
jest-test:
name: Jest Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 16.x
uses: actions/setup-node@v4
with:
node-version: 16
cache: npm
- name: Install dependencies
run: npm ci
- name: Run jest tests
run: npm run test -w packages/smart-forms-renderer
- uses: codecov/codecov-action@v4
cypress-test:
name: Cypress Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Cypress tests
uses: cypress-io/github-action@v6
with:
browser: chrome
project: ./apps/smart-forms-app
build: npm run build -w apps/smart-forms-app
start: npm run preview -w apps/smart-forms-app
record: true
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
playwright-test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
cache: npm
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
build: npm run build -w apps/smart-forms-app
start: npm run preview -w apps/smart-forms-app
name: playwright-report
path: playwright-report/
retention-days: 30
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 16.x
uses: actions/setup-node@v4
with:
node-version: 16
cache: npm
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Check formatting
run: npm run check-formatting