1
0
mirror of https://github.com/eleith/emailjs.git synced 2024-06-16 04:49:03 +00:00
emailjs/.github/workflows/test.yml

30 lines
543 B
YAML
Raw Normal View History

on: push
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
2020-10-30 06:43:28 +00:00
node: [^10, ^12, ^14, ^15]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: checkout
2020-10-30 06:43:28 +00:00
uses: actions/checkout@v2
- name: node
2020-10-30 06:43:28 +00:00
uses: actions/setup-node@v2-beta
with:
2020-10-30 06:43:28 +00:00
node-version: ${{ matrix.node }}
- name: install
run: yarn install
- name: test
run: yarn test
- name: test-cjs
run: yarn test-cjs