Cache loaders #49
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Quality | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
name: Check all files with pre-commit | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout code so that it is available to use in the executing runner | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 21.7.3 | |
- name: Setup pnmp | |
uses: pnpm/[email protected] | |
with: | |
version: 9.9.0 | |
run_install: false | |
- name: Setup Yarn | |
run: | | |
npm install -g [email protected] | |
yarn --version | |
- name: Install dependencies | |
run: make deps-notion && make deps && make build-notion | |
- name: Check all files with pre-commit | |
uses: pre-commit/[email protected] |