10000 chore: bump to node 20 by kevcodez · Pull Request #706 · supabase/postgres-meta · GitHub
[go: up one dir, main page]

Skip to content

chore: bump to node 20 #706

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
try prettier
  • Loading branch information
kevcodez committed Feb 5, 2024
commit b7cfb85fd5163d9d4cf6710d58f29d21f38f58b1
19 changes: 15 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,21 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actionsx/prettier@v3
with:
args: --check "{src,test}/**/*.ts"

- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

# Installing all dependencies takes up to three minutes, hacking around to only installing prettier+deps
- name: Download dependencies
run: |
rm package.json
rm package-lock.json
npm i prettier@3 prettier-plugin-sql@0.17.0
- name: Run prettier
run: |-
npx prettier -c '{src,test}/**/*.ts'

docker:
name: Build with docker
runs-on: ubuntu-22.04
Expand Down
0