chore: bump deps and profile modal #1309
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize] | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build and Test | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
- name: Install dependencies 🧳 | |
run: yarn install --frozen-lockfile | |
- name: Install Playwright Browsers 🕹️ | |
run: npx playwright install --with-deps | |
- name: Check Lint 💅🏻 | |
run: yarn lint && yarn typecheck | |
- name: Run Build 🔨 | |
run: yarn build | |
- name: Run Tests 🧪 | |
run: yarn e2e:test | |