We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8a3042 commit 4ea0665Copy full SHA for 4ea0665
.github/workflows/node.js.yml
@@ -11,24 +11,21 @@ on:
11
12
jobs:
13
build:
14
- runs-on: self-hosted
+ runs-on: ubuntu-latest
15
16
strategy:
17
matrix:
18
node-version: [22.x]
19
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
20
21
steps:
22
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
23
with:
24
clean: false
25
- name: Use Node.js ${{ matrix.node-version }}
26
- uses: actions/setup-node@v2
+ uses: actions/setup-node@v4
27
28
node-version: ${{ matrix.node-version }}
29
cache: 'npm'
30
- run: npm ci
31
- run: npm run build --if-present
32
- - run: pm2 reload next-js
33
- env:
34
- CI: true
0 commit comments