Skip to content

fix(pubu): cannot get books info #14

fix(pubu): cannot get books info

fix(pubu): cannot get books info #14

Workflow file for this run

name: Code Check
on:
pull_request:
paths-ignore:
- '.github/**'
- '.vscode/**'
- '.idea/**'
- '.husky/**'
jobs:
code-check:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install Dependencies
run: npm ci --prefer-offline --ignore-scripts --progress=false --no-audit --no-fund
- name: Format Check
run: npm run format-check
- name: Compile Test
run: npm run build