Skip to content

Commit eba85dd

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents 27b713b + fcfb31a commit eba85dd

File tree

6 files changed

+4067
-1160
lines changed

6 files changed

+4067
-1160
lines changed

.github/workflows/package.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ on:
22
push:
33
branches:
44
- main
5+
workflow_dispatch:
56

67
name: Package
78

@@ -14,12 +15,20 @@ jobs:
1415
uses: actions/checkout@v3
1516
with:
1617
ref: main
18+
19+
- uses: actions/setup-node@v4
20+
with:
21+
node-version: 16 # Node v16 is required for the @vercel/ncc to work. TODO: update the package tool and then update the node version here.
22+
1723
- name: Install packages
1824
run: npm ci
25+
1926
- name: Run linter
2027
run: npm run lint
28+
2129
- name: Package
2230
run: npm run package
31+
2332
- name: Commit
2433
run: |
2534
git config --global user.name "GitHub Actions"

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,5 @@ outputs:
8787
EC2 Instance Id of the created runner.
8888
The id is used to terminate the EC2 instance when the runner is not needed anymore.
8989
runs:
90-
using: node16
90+
using: node20
9191
main: ./dist/index.js

0 commit comments

Comments
 (0)