Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

update metadata description #146

update metadata description

update metadata description #146

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18]
timeout-minutes: 20
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Install Playwright browsers
run: pnpm exec playwright install --with-deps
- name: Typecheck
run: pnpm run typecheck
- name: Lint
run: pnpm run lint
- name: Run unit / component tests
run: pnpm run test:unit
- name: Run Playwright tests
run: pnpm run test:e2e
- name: Upload Playwright report
uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30