Skip to content

Bump @actions/github from 5.0.0 to 6.0.0 #337

Bump @actions/github from 5.0.0 to 6.0.0

Bump @actions/github from 5.0.0 to 6.0.0 #337

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@v3
- uses: actions/setup-node@v2.4.1
with:
node-version: 12.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@v3
- uses: ./
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
dry_run: true