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

27 lines
517 B
YAML
Raw Normal View History

name: Main workflow
2019-12-31 14:04:50 +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:48 +08:00
steps:
2019-07-24 01:22:25 +08:00
- name: Checkout
uses: actions/checkout@master
- name: Set Node.js 10.x
2019-07-17 02:24:29 +08:00
uses: actions/setup-node@master
with:
node-version: 10.x
- name: npm install
run: npm install
- name: Lint
run: npm run format-check
- name: npm test
run: npm test