Skip to content

PB-344: update node and dependencies - #minor #340

PB-344: update node and dependencies - #minor

PB-344: update node and dependencies - #minor #340

Workflow file for this run

name: 'build-test'
on: # rebuild any PRs and main branch changes
pull_request:
branches:
- master
- develop
- feature-*
- feat-*
- bug-*
- bugfix-*
- hotfix-*
jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: |
npm ci
- run: |
npm run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
dry_run: true