Skip to content

Backport to 7.x: Support async babel plugins #140

Backport to 7.x: Support async babel plugins

Backport to 7.x: Support async babel plugins #140

Workflow file for this run

name: CI
on:
push:
branches:
- master
- 'v*' # older version branches
tags:
- '*'
pull_request: {}
jobs:
test:
name: "Node ${{ matrix.node }} - ${{ matrix.os }}"
runs-on: "${{matrix.os}}-latest"
strategy:
fail-fast: false
matrix:
os: ['ubuntu', 'windows']
node: ['8', '10', '12', '14', '16']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: install dependencies
run: yarn install --frozen-lockfile
- name: test
run: yarn test