Skip to content

feat: update colors and fix bugs with login #16

feat: update colors and fix bugs with login

feat: update colors and fix bugs with login #16

Workflow file for this run

name: CI
on:
push:
branches: ['main']
jobs:
lint:
timeout-minutes: 10
runs-on: ubuntu-latest
name: 'Lint code: node-18, ubuntu-latest'
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 7
- name: Set node 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Lint
run: pnpm run lint
- name: Format
run: pnpm run format