Skip to content

✨ unset marks on enter and make editor wider (#4) #30

✨ unset marks on enter and make editor wider (#4)

✨ unset marks on enter and make editor wider (#4) #30

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint
- name: Install Playwright Browsers
run: npx playwright install chromium
# note: we need to build before running tests because it's a chrome extension
- name: Test
run: |
yarn build
yarn test:e2e
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30