Skip to content

Commit 8d5a19e

Browse files
committed
Add node and build step to CI
1 parent 75b2868 commit 8d5a19e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/beta_deploy.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@ jobs:
1818
build-deploy:
1919
runs-on: ubuntu-latest
2020
steps:
21+
- uses: actions/setup-node@v6.3.0
22+
node-version: 22.22.x
2123
- name: Checkout your repository using git
2224
uses: actions/checkout@v4
25+
- name: Install dependencies
26+
run: npm run install
2327
- name: Build website
2428
run: npm run build
2529
- name: Deploy to Cloudflare Workers

.github/workflows/deploy.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@ jobs:
1818
build-deploy:
1919
runs-on: ubuntu-latest
2020
steps:
21+
- uses: actions/setup-node@v6.3.0
22+
node-version: 22.22.x
2123
- name: Checkout your repository using git
2224
uses: actions/checkout@v4
25+
- name: Install dependencies
26+
run: npm run install
2327
- name: Build website
2428
run: npm run build
2529
- name: Deploy to Cloudflare Workers

0 commit comments

Comments
 (0)