1
0
mirror of https://github.com/eleith/emailjs.git synced 2024-07-07 12:40:37 +00:00
emailjs/.github/workflows/lint.yml

29 lines
542 B
YAML
Raw Normal View History

2020-09-04 05:14:18 +00:00
on: push
jobs:
test:
name: lint
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
2020-10-30 05:50:57 +00:00
node-version: [^10, ^12, ^14, ^15]
2020-09-04 05:14:18 +00:00
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: checkout
uses: actions/checkout@v1
with:
fetch-depth: 0
- name: node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install
run: yarn install
- name: lint
run: yarn lint