Skip to content

pnpmにする

pnpmにする #566

Workflow file for this run

name: ESLint
on:
push:
branches-ignore:
- main
jobs:
ESLint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- uses: pnpm/action-setup@v4
with:
version: 9
- name: ci
run: cd TypeScript && pnpm install --immutable --immutable-cache --check-cache
- name: ESLint
run: cd TypeScript && pnpm lint