Skip to content

build(deps): bump tar from 6.2.0 to 6.2.1 #13

build(deps): bump tar from 6.2.0 to 6.2.1

build(deps): bump tar from 6.2.0 to 6.2.1 #13

Workflow file for this run

name: ci
on: pull_request
jobs:
code-style-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# 参考: https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#use-private-packages
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run npm run fix
run: npm run fix
- name: Check for changes
run: |
git diff --exit-code || (echo "Code style error" && exit 1)