Skip to content

Merge pull request #18 from Life-Palette/dependabot/npm_and_yarn/path… #72

Merge pull request #18 from Life-Palette/dependabot/npm_and_yarn/path…

Merge pull request #18 from Life-Palette/dependabot/npm_and_yarn/path… #72

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup PNPM
uses: pnpm/action-setup@v4
- name: 📦 Install dependencies
run: pnpm install
# - name: 🌈 typecheck
# run: pnpm typecheck
- name: 📝 Lint
run: pnpm lint:fix
- name: 🍥 Build
run: pnpm build