mirror of
https://gitea.com/actions/setup-java.git
synced 2024-11-05 03:20:31 +01:00
24 lines
451 B
YAML
24 lines
451 B
YAML
|
name: Main workflow
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
run:
|
||
|
name: Run
|
||
|
runs-on: ${{ matrix.operating-system }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
operating-system: [ubuntu-latest, windows-latest]
|
||
|
actions:
|
||
|
- name: Set Node.js 10.x
|
||
|
uses: bryanmacfarlane/node-config@master
|
||
|
with:
|
||
|
version: 10.x
|
||
|
|
||
|
- name: npm install
|
||
|
run: npm install
|
||
|
|
||
|
- name: Lint
|
||
|
run: npm run format-check
|
||
|
|
||
|
- name: npm test
|
||
|
run: npm test
|