Support "Arbitrary Module Namespace Identifiers" (#1030) #147
This file contains 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: | |
- main | |
- master | |
pull_request: | |
branches: | |
- main | |
- master | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
# Test the latest version of Node.js plus the last two LTS versions. | |
node-version: | |
- "*" | |
- lts/* | |
- lts/-1 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use node version ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
check-latest: true | |
- run: npm i | |
- run: npm test | |