build: 타입스크립트 5.7 버전업 #58
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: autofix.ci # needed to securely identify the workflow | |
on: | |
pull_request: | |
push: | |
branches: ["main"] | |
defaults: | |
run: | |
working-directory: backend | |
permissions: | |
contents: read | |
jobs: | |
autofix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: pnpm 설치 | |
uses: pnpm/action-setup@v4 | |
with: | |
package_json_file: "backend/package.json" | |
- name: Node.js 22 설치 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: "pnpm" | |
cache-dependency-path: backend/pnpm-lock.yaml | |
- name: 의존성 설치 | |
run: pnpm install --frozen-lockfile | |
- name: 포매팅 | |
run: pnpm format | |
- name: 린트 | |
run: pnpm lint || true | |
- uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a |