Skip to content

Commit c24dfdb

Browse files
committed
Fix CI definition
1 parent 4f2e2e4 commit c24dfdb

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/beta_deploy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/setup-node@v6.3.0
22-
node-version: 22.22.x
22+
with:
23+
node-version: 22.22.x
2324
- name: Checkout your repository using git
2425
uses: actions/checkout@v4
2526
- name: Install dependencies
26-
run: npm run install
27+
run: npm ci
2728
- name: Build website
2829
run: npm run build
2930
- name: Deploy to Cloudflare Workers

.github/workflows/deploy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/setup-node@v6.3.0
22-
node-version: 22.22.x
22+
with:
23+
node-version: 22.22.x
2324
- name: Checkout your repository using git
2425
uses: actions/checkout@v4
2526
- name: Install dependencies
26-
run: npm run install
27+
run: npm ci
2728
- name: Build website
2829
run: npm run build
2930
- name: Deploy to Cloudflare Workers

0 commit comments

Comments
 (0)