0
1
Fork 0
setup-go/.github/workflows/workflow.yml

35 lines
601 B
YAML
Raw Normal View History

2020-02-09 06:21:39 +01:00
name: build-test
on:
push:
branches:
- master
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
2019-07-11 22:16:54 +02:00
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest]
2019-07-26 04:59:14 +02:00
steps:
2019-07-23 19:24:08 +02:00
- name: Checkout
2020-02-09 06:21:39 +01:00
uses: actions/checkout@v2
2019-07-23 19:24:08 +02:00
2020-02-09 06:21:39 +01:00
- name: Setup node 12
uses: actions/setup-node@v1
2019-07-11 22:16:54 +02:00
with:
2020-02-09 06:21:39 +01:00
node-version: 12
2019-07-11 22:16:54 +02:00
- name: npm install
run: npm install
- name: Lint
run: npm run format-check
- name: npm test
run: npm test