Skip to content

Commit

Permalink
set node to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
githubsaturn committed Oct 19, 2024
1 parent 4cfbf9b commit d468214
Show file tree
Hide file tree
Showing 3 changed files with 157 additions and 195 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: Publish One Click Apps

on:
push:
branches: [master]
push:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
- run: npm ci && npm run publish
env:
GITHUB_PERSONAL_TOKEN: ${{secrets.GITHUB_PERSONAL_TOKEN}}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 20
- run: npm ci && npm run publish
env:
GITHUB_PERSONAL_TOKEN: ${{secrets.GITHUB_PERSONAL_TOKEN}}
32 changes: 16 additions & 16 deletions .github/workflows/validate_apps.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: Validate One Click Apps

on:
push:
branches:
- master
pull_request:
branches:
- master
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
- run: npm ci && npm run validate_apps && npm run formatter
env:
GITHUB_PERSONAL_TOKEN: ${{secrets.GITHUB_PERSONAL_TOKEN}}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 20
- run: npm ci && npm run validate_apps && npm run formatter
env:
GITHUB_PERSONAL_TOKEN: ${{secrets.GITHUB_PERSONAL_TOKEN}}
Loading

0 comments on commit d468214

Please sign in to comment.