Skip to content

Update i18n.ts

Update i18n.ts #662

Workflow file for this run

name: E2E, Lint & Unit tests
on:
push:
branches:
- "main"
pull_request:
jobs:
start:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"
- name: Cache playwright dependencies
id: cache-playwright
uses: actions/cache@v3
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/yarn.lock') }}
- name: Start docker-compose
run: docker-compose up -d
- name: Install dependencies
run: yarn install
- name: Run linter
run: yarn lint
- name: Install playwright dependencies
if: steps.cache-playwright.outputs.cache-hit != 'true'
run: npx playwright install --with-deps
- name: Fill database
run: yarn database
- name: Build packages
run: yarn build:example
- name: Start server
run: yarn start:example &
- name: Run tests
run: |
yarn test
yarn turbo test:e2e
cd apps/example && yarn prisma db seed && cd -
BASE_URL=http://localhost:3000/pagerouter/admin yarn test:e2e
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30