Backport to 7.x: Support async babel plugins #137
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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', 'macOS'] | |
| node: ['6', '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 |