Skip to content

Commit 26ee491

Browse files
committed
Update GitHub Actions workflows to use Node.js 20.x and improve formatting
1 parent 53205fb commit 26ee491

File tree

2 files changed

+61
-62
lines changed

2 files changed

+61
-62
lines changed

.github/workflows/check-dist.yml

+38-38
Original file line numberDiff line numberDiff line change
@@ -6,48 +6,48 @@
66
name: Check dist/
77

88
on:
9-
push:
10-
branches:
11-
- main
12-
paths-ignore:
13-
- '**.md'
14-
pull_request:
15-
paths-ignore:
16-
- '**.md'
17-
workflow_dispatch:
9+
push:
10+
branches:
11+
- main
12+
paths-ignore:
13+
- "**.md"
14+
pull_request:
15+
paths-ignore:
16+
- "**.md"
17+
workflow_dispatch:
1818

1919
jobs:
20-
check-dist:
21-
runs-on: ubuntu-latest
20+
check-dist:
21+
runs-on: ubuntu-latest
2222

23-
steps:
24-
- uses: actions/checkout@v4
23+
steps:
24+
- uses: actions/checkout@v4
2525

26-
- name: Set Node.js 16.x
27-
uses: actions/[email protected]
28-
with:
29-
node-version: 16.x
26+
- name: Set Node.js 20.x
27+
uses: actions/[email protected]
28+
with:
29+
node-version: 20.x
3030

31-
- name: Install dependencies
32-
run: npm ci
31+
- name: Install dependencies
32+
run: npm ci
3333

34-
- name: Rebuild the dist/ directory
35-
run: |
36-
npm run package
34+
- name: Rebuild the dist/ directory
35+
run: |
36+
npm run package
3737
38-
# @kiwicopple: I've disabled this worklfow for now, as it's not working as expected. It will still output an error.
39-
# - name: Compare the expected and actual dist/ directories
40-
# run: |
41-
# if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
42-
# echo "Detected uncommitted changes after build. See status below:"
43-
# git diff
44-
# exit 1
45-
# fi
46-
# id: diff
47-
#
48-
# # If index.js was different than expected, upload the expected version as an artifact
49-
# - uses: actions/upload-artifact@v3
50-
# if: ${{ failure() && steps.diff.conclusion == 'failure' }}
51-
# with:
52-
# name: dist
53-
# path: dist/
38+
# @kiwicopple: I've disabled this worklfow for now, as it's not working as expected. It will still output an error.
39+
# - name: Compare the expected and actual dist/ directories
40+
# run: |
41+
# if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
42+
# echo "Detected uncommitted changes after build. See status below:"
43+
# git diff
44+
# exit 1
45+
# fi
46+
# id: diff
47+
#
48+
# # If index.js was different than expected, upload the expected version as an artifact
49+
# - uses: actions/upload-artifact@v3
50+
# if: ${{ failure() && steps.diff.conclusion == 'failure' }}
51+
# with:
52+
# name: dist
53+
# path: dist/

.github/workflows/test.yml

+23-24
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
1-
name: 'build-test'
1+
name: "build-test"
22
on: # rebuild any PRs and main branch changes
3-
pull_request:
4-
push:
5-
branches:
6-
- main
7-
- 'releases/*'
3+
pull_request:
4+
push:
5+
branches:
6+
- main
7+
- "releases/*"
88

99
jobs:
10-
build: # make sure build/ci work properly
11-
runs-on: ubuntu-latest
12-
steps:
13-
- uses: actions/checkout@v4
14-
- run: |
15-
npm install
16-
- run: |
17-
npm run all
18-
test: # make sure the action works on a clean machine without building
19-
runs-on: ubuntu-latest
20-
steps:
21-
- uses: actions/checkout@v4
22-
- uses: ./
23-
with:
24-
supabase-url: 'https://nihypcognmeejjrivnde.supabase.co'
25-
supabase-service-role-key: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }}
26-
openai-key: ${{ secrets.OPENAI_KEY }}
27-
docs-root-path: 'docs'
10+
build: # make sure build/ci work properly
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- run: |
15+
npm install
16+
- run: |
17+
npm run all
18+
test: # make sure the action works on a clean machine without building
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: ./
23+
with:
24+
database-url: ${{ secrets.OPENAI_KEY }}
25+
openai-api-key: ${{ secrets.OPENAI_KEY }}
26+
docs-root-path: "docs/"

0 commit comments

Comments
 (0)