fix: onCheckCode hook not working for windows #8381
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: CI | |
env: | |
NODE_OPTIONS: --max-old-space-size=6144 | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'examples/**' | |
- 'docs/**' | |
- '**/*.md' | |
pull_request: | |
types: | |
- 'opened' | |
- 'synchronize' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x, 18.x] | |
os: [ubuntu-latest, windows-latest] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
if: ${{ matrix.node-version != '14.x' }} | |
uses: pnpm/action-setup@v4 | |
- name: Get pnpm version (node 14) | |
if: ${{ matrix.node-version == '14.x' }} | |
uses: actions/github-script@v7 | |
id: pnpm-version | |
with: | |
result-encoding: string | |
script: | | |
const packageJson = require('./package.json') | |
const pnpmVersion = packageJson.packageManager.split('@')[1] | |
console.log(`Use pnpm ${pnpmVersion}`) | |
return pnpmVersion | |
- name: Install pnpm (node 14) | |
if: ${{ matrix.node-version == '14.x' }} | |
run: | | |
npm install -g @pnpm/exe@${{ steps.pnpm-version.outputs.result }} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: 'https://registry.npmjs.org/' | |
cache: 'pnpm' | |
# We use week in the turbo cache key to keep the cache from infinitely growing | |
- name: Get cache expires mark (non-windows) | |
if: runner.os != 'Windows' | |
run: echo "EXPIRES_WEEK_MARK=$(date +%U)" >> $GITHUB_OUTPUT | |
- name: Get cache expires mark (windows) | |
if: runner.os == 'Windows' | |
run: echo "EXPIRES_WEEK_MARK=$(date +%U)" >> $env:GITHUB_OUTPUT | |
- name: Turbo Cache | |
id: turbo-cache | |
uses: actions/cache@v3 | |
with: | |
path: .turbo | |
key: turbo-${{ github.job }}-${{ runner.os }}-node${{ matrix.node-version }}-${{ github.ref_name }}-${{ env.EXPIRES_WEEK_MARK }}-${{ github.sha }} | |
restore-keys: | | |
turbo-${{ github.job }}-${{ runner.os }}-node${{ matrix.node-version }}- | |
turbo-${{ github.job }}-${{ runner.os }}-node${{ matrix.node-version }}-${{ github.ref_name }}-${{ env.EXPIRES_WEEK_MARK }}- | |
- name: Install dependencies | |
run: pnpm i | |
- run: pnpm build | |
- run: pnpm run setup | |
- run: pnpm tsc:check | |
- run: pnpm test | |
- run: pnpm check:packageFiles | |
env: | |
CI: true | |
NODE_ENV: test |