Skip to content

fix: token check bug #2

fix: token check bug

fix: token check bug #2

Workflow file for this run

name: Hooks
on:
push:
paths: [packages/hooks/**]
pull_request:
paths: [packages/hooks/**]
permissions: read-all
jobs:
check:
defaults:
run:
working-directory: packages/hooks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: yarn install
working-directory: ./
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build