Bump actions/checkout from 3 to 4 (#8) #105
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: | |
# FIXME: Test is not implemented after using Piping Server | |
if: false | |
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@v4 | |
- uses: actions/setup-node@v3 | |
- run: npm update | |
- run: npm run test | |
env: | |
TEST_BROWSER_NAME: ${{ matrix.browser }} |