mirror of
https://github.com/subosito/flutter-action.git
synced 2024-08-16 10:19:50 +02:00
23 lines
508 B
YAML
23 lines
508 B
YAML
|
name: Main workflow
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
run:
|
||
|
name: Run
|
||
|
runs-on: ${{ matrix.operating-system }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@master
|
||
|
- name: Set Node.js 10.x
|
||
|
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
|