✨ 还是把生日加回来了,不然太空了 #385
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: Qodana | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
qodana: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 21.4.0 | |
- name: setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.14.1 | |
- name: remove lockfile | |
run: rm -f pnpm-lock.yaml | |
- name: Install dependencies | |
run: pnpm install | |
- name: "Qodana Scan" | |
uses: JetBrains/[email protected] | |
env: | |
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} |