diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 2a19a69..b2313c1 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -26,7 +26,7 @@ jobs: uses: bahmutov/npm-install@v1 - name: 🔬 Lint - run: pnpm lint:strict + run: yarn lint:strict typecheck: name: ʦ TypeScript @@ -47,4 +47,4 @@ jobs: uses: bahmutov/npm-install@v1 - name: 🔎 Type check - run: pnpm typecheck + run: yarn typecheck diff --git a/frontend/netlify.toml b/frontend/netlify.toml index 88ef990..fd59484 100644 --- a/frontend/netlify.toml +++ b/frontend/netlify.toml @@ -3,7 +3,7 @@ [build] publish = "dist" - command = "pnpm run build" + command = "yarn build" [[redirects]] from = "/*" diff --git a/frontend/package.json b/frontend/package.json index 29cc013..c2ee365 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -34,7 +34,7 @@ }, "lint-staged": { "**/*.{js,ts,vue,html}": [ - "pnpm lint:fix" + "yarn lint:fix" ] } }