oneuptime/.github/workflows/test.model.yaml

21 lines
430 B
YAML
Raw Normal View History

2022-08-03 19:24:56 +00:00
name: Model Test
on:
pull_request:
push:
branches-ignore:
- 'hotfix-*' # excludes hotfix branches
- 'release'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
check-latest: true
- run: cd Common && npm install
2022-08-03 21:16:03 +00:00
- run: cd Model && npm install
2022-08-03 19:24:56 +00:00
- run: cd Model && npm install && npm run test