We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c06df6b commit a6f1148Copy full SHA for a6f1148
.github/workflows/format-code.yml
@@ -13,15 +13,15 @@ jobs:
13
with:
14
ref: ${{ github.head_ref }}
15
16
- - name: Run prettier
17
- uses: docker://permafrostsoftware/prettier-docker-ga
+ - uses: oven-sh/setup-bun@v2
18
19
- args: --config prettier.config.js *.js *.json *.yml ./src/* ./tests/*
+ bun-version: latest
+
20
+ - name: Run Prettier
21
+ run: node_modules/.bin/prettier --config prettier.config.js *.js *.json *.yml ./src/* ./tests/*
22
23
- name: Run ESLint
- uses: permafrost-dev/eslint-docker-ga@main
- with:
24
- args: --config .eslintrc.js --fix --ext ts,js ./src/**/* ./tests/**/*
+ run: node_modules/.bin/eslint --config eslint.config.js --fix --ext ts,js ./src/**/* ./tests/**/*
25
26
- name: Commit changes
27
uses: stefanzweifel/git-auto-commit-action@v5
0 commit comments