Don't include ES6 module versions in npm package #411
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
browser: | |
- ChromeHeadless | |
- FirefoxHeadless | |
include: | |
- os: macos-latest | |
browser: Safari | |
- os: windows-latest | |
browser: EdgeHeadless | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- run: npm update | |
- run: npm run test | |
env: | |
TEST_BROWSER_NAME: ${{ matrix.browser }} |