Skip to content

chore: release v0.7.0 #39

chore: release v0.7.0

chore: release v0.7.0 #39

Workflow file for this run

name: 'ci'
on:
push:
jobs:
typecheck:
name: Typecheck
runs-on: ubuntu-latest
timeout-minutes: 15
env:
GH_PACKAGE_REGISTRY_TOKEN: ${{ secrets.GH_PACKAGE_REGISTRY_TOKEN }}
concurrency:
group: ci-typecheck-${{ github.ref }}
cancel-in-progress: true
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: 📥 Install dependencies
run: yarn
- name: 📦 Build packages
run: yarn build
- name: 👕 Lint
run: yarn lint
- name: 🔖 Typecheck
run: yarn typecheck
- name: ✅ Test
run: yarn playwright install && yarn test