mirror of
https://github.com/dkershner6/post-api-call-action.git
synced 2024-11-15 20:43:52 +08:00
16 lines
307 B
YAML
16 lines
307 B
YAML
name: "build-test"
|
|
on: # rebuild any PRs and main branch changes
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- 'releases/*'
|
|
|
|
jobs:
|
|
build: # make sure build/ci work properly
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- run: |
|
|
npm ci
|
|
npm run all |