This repository was archived by the owner on Apr 2, 2025. It is now read-only.
Merge pull request #355 from tuanductran/renovate/typescript-5.x-lock… #53
This file contains hidden or 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 | |
on: | |
pull_request: | |
push: | |
branches: | |
- "master" | |
- "develop" | |
permissions: | |
contents: read | |
jobs: | |
autofix: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Configure Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
- name: Install Packages | |
run: pnpm install | |
- name: TypeScript Check | |
run: pnpm type:check | |
- name: Run AutoFix | |
uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a |