Skip to content

fix: ci error

fix: ci error #3

Workflow file for this run

on:
- push
- pull_request
permissions: read-all
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Launch Turbo Remote Cache Server
uses: dtinth/setup-github-actions-caching-for-turbo@v1.1.0
- name: Install npm
uses: npm/action-setup@v2
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Install dependencies
run: npm i
- name: Format Check
run: npm run format:check
- name: Lint
run: npm run lint
- name: Test
run: npm run test