Skip to content

move back from pnpm to yarn4 lol #75

move back from pnpm to yarn4 lol

move back from pnpm to yarn4 lol #75

Workflow file for this run

name: code check
on: [pull_request]
jobs:
merge-gatekeeper:
name: Mergeability
runs-on: ubuntu-latest
permissions:
checks: read
statuses: read
steps:
- name: Run Merge Gatekeeper
uses: upsidr/merge-gatekeeper@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
self: Mergeability
yarn-check:
name: yarn ${{ matrix.command }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
command: ["lint:ci", "format:ci", "build:scss"]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: 'yarn'
- name: Install project dependencies
run: yarn install --frozen-lockfile
- name: Check ${{ matrix.command }}
run: yarn ${{ matrix.command }}
env:
FORCE_COLOR: 2