Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

fix: spacing

fix: spacing #231

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
# cancel in-progress runs on new commits to same PR (gitub.event.number)
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
Lint:
runs-on: ubuntu-latest
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7.24.2
run_install: true
- run: pnpm run lint
Check:
runs-on: ubuntu-latest
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7.24.2
run_install: true
- run: pnpm run check
Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7.24.2
run_install: true
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- run: pnpm run test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30