Skip to content

fix: windows path for experiments.css #103

fix: windows path for experiments.css

fix: windows path for experiments.css #103

Workflow file for this run

name: 'ci'
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
test-webpack4:
strategy:
fail-fast: false
matrix:
host: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.host }}
steps:
- uses: actions/checkout@v2
- name: Set node version to 16
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'yarn'
- run: yarn install
- run: yarn test:webpack4
shell: bash
test-webpack5:
strategy:
fail-fast: false
matrix:
host: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.host }}
steps:
- uses: actions/checkout@v2
- name: Set node version to 16
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'yarn'
- run: yarn install
- run: yarn test
shell: bash
test-webpack5-inline-match-resource:
strategy:
fail-fast: false
matrix:
host: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.host }}
steps:
- uses: actions/checkout@v2
- name: Set node version to 16
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'yarn'
- run: yarn install
- run: yarn test:match-resource
shell: bash