setup-dotnet/.github/workflows/workflow.yml

27 lines
512 B
YAML
Raw Normal View History

name: Main workflow
2019-10-11 07:52:12 +08:00
on: [push, pull_request]
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest]
2019-07-26 10:59:29 +08:00
steps:
2019-07-24 01:22:11 +08:00
- name: Checkout
uses: actions/checkout@master
- name: Set Node.js 10.x
2019-07-17 02:32:35 +08:00
uses: actions/setup-node@master
with:
version: 10.x
- name: npm install
run: npm install
- name: Lint
run: npm run format-check
- name: npm test
run: npm test