1234567891011121314151617181920 |
- name: Build and test application on push to remote
- on:
- push:
- branches:
- - master
- pull_request:
- branches:
- - master
- jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - uses: actions/setup-node@v1
- with:
- node-version: 16
- - run: make build
- - run: make test
|