Skip to content

Commit

Permalink
Merge pull request #132 from Lightning-Flow-Scanner/feat/update-node-22
Browse files Browse the repository at this point in the history
chore: bump node to node 22
  • Loading branch information
junners authored Nov 16, 2024
2 parents a193152 + cb28a5b commit a74f0d4
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 109 deletions.
47 changes: 0 additions & 47 deletions .github/workflows/deploy-ALPHA.yml

This file was deleted.

119 changes: 59 additions & 60 deletions .github/workflows/deploy-BETA.yml
Original file line number Diff line number Diff line change
@@ -1,61 +1,60 @@
---
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#

#######################################
# Start the job on all push to master #
#######################################
name: 'Build & Deploy - Beta'
on:
push:
branches:
- master

permissions: read-all

concurrency:
group: ${{ github.ref_name }}-${{ github.workflow }}
cancel-in-progress: true

###############
# Set the Job #
###############
jobs:

# Deploy to NPM
deploy_to_npm:
name: Deploy to NPM (beta)
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write
environment:
name: beta
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/[email protected]
with:
node-version: 20.x
registry-url: https://registry.npmjs.org
scope: rubenhalman
- name: Install Dependencies
run: |
npm ci
- name: Semantic Release Dependency
run: |
npm install -g semantic-release https://github.com/oclif/semantic-release/archive/refs/tags/v3.1.5.tar.gz
cd semantic-release
npm install
- name: Publish Beta
env:
GITHUB_TOKEN: ${{ secrets.TOKENX }}
NPM_TOKEN: ${{ secrets.NPM_TOKENX }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKENX }}
run: semantic-release -e @oclif/semantic-release ./semantic-release/release.config.mjs
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#

#######################################
# Start the job on all push to master #
#######################################
name: "Build & Deploy - Beta"
on:
push:
branches:
- master

permissions: read-all

concurrency:
group: ${{ github.ref_name }}-${{ github.workflow }}
cancel-in-progress: true

###############
# Set the Job #
###############
jobs:
# Deploy to NPM
deploy_to_npm:
name: Deploy to NPM (beta)
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write
environment:
name: beta
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/[email protected]
with:
node-version: 22.x
registry-url: https://registry.npmjs.org
scope: rubenhalman
- name: Install Dependencies
run: |
npm ci
- name: Semantic Release Dependency
run: |
npm install -g semantic-release https://github.com/oclif/semantic-release/archive/refs/tags/v3.1.5.tar.gz
cd semantic-release
npm install
- name: Publish Beta
env:
GITHUB_TOKEN: ${{ secrets.TOKENX }}
NPM_TOKEN: ${{ secrets.NPM_TOKENX }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKENX }}
run: semantic-release -e @oclif/semantic-release ./semantic-release/release.config.mjs
2 changes: 1 addition & 1 deletion .github/workflows/deploy-RELEASE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/[email protected]
with:
node-version: 20.x
node-version: 22.x
registry-url: "https://registry.npmjs.org"
# Defaults to the user or organization that owns the workflow file
scope: rubenhalman
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-RELEASE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/[email protected]
with:
node-version: 20.x
node-version: 22.x
registry-url: https://registry.npmjs.org
scope: rubenhalman
- name: Generate New Release Number
Expand Down

0 comments on commit a74f0d4

Please sign in to comment.