Skip to content

test: move karma to playwright-test #285

test: move karma to playwright-test

test: move karma to playwright-test #285

Workflow file for this run

name: test
on: [push, pull_request]
# disable saucelabs
#env:
# SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
# SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
permissions:
contents: read
jobs:
test:
name: "Test on Node:${{ matrix.node-version }} OS: ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18, 20]
os: [ubuntu-latest]
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- name: Build
run: yarn run build
- name: Test
run: yarn test
test-chrome:
name: "Test Chromium browser"
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: 18

Check failure on line 36 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 36, Col: 23): Unexpected value '18' .github/workflows/test.yml (Line: 57, Col: 23): Unexpected value '18'
os: [ubuntu-latest]
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- name: Build
run: yarn run build
- name: Test
run: yarn run test:chrome
test-firefox:
name: "Test Firefox browser"
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: 18
os: [ubuntu-latest]
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- name: Build
run: yarn run build
- name: Test
run: yarn run test:firefox
test-webkit:
name: "Test WebKit browser on macOS"
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: 18
os: [macos-latest]
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- name: Build
run: yarn run build
- name: Test
run: yarn run test:webkit