Skip to content

Commit 4ea0665

Browse files
committed
we don't want this for CD, only CI. update the versions. tested this locally with [act](https://nektosact.com/introduction.html)
1 parent c8a3042 commit 4ea0665

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/node.js.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,21 @@ on:
1111

1212
jobs:
1313
build:
14-
runs-on: self-hosted
14+
runs-on: ubuntu-latest
1515

1616
strategy:
1717
matrix:
1818
node-version: [22.x]
1919
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
with:
2424
clean: false
2525
- name: Use Node.js ${{ matrix.node-version }}
26-
uses: actions/setup-node@v2
26+
uses: actions/setup-node@v4
2727
with:
2828
node-version: ${{ matrix.node-version }}
2929
cache: 'npm'
3030
- run: npm ci
3131
- run: npm run build --if-present
32-
- run: pm2 reload next-js
33-
env:
34-
CI: true

0 commit comments

Comments
 (0)