Skip to content

refactor: πŸ’‘ chagne API URL #31

refactor: πŸ’‘ chagne API URL

refactor: πŸ’‘ chagne API URL #31

Workflow file for this run

name: Code Check
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: ${{ github.job }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: ⬣ ESLint, Κ¦ TypeScript, πŸ’… Prettier, and πŸƒ Test
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v2
- name: 🀌 Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: βŽ” Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
- name: πŸ“₯ Download deps
run: pnpm install
- name: πŸ”¬ Lint
run: pnpm run lint:strict
- name: πŸ”Ž Type check
run: pnpm run typecheck
- name: πŸ’… Prettier check
run: pnpm run format:check