Skip to content

chore: release react-style-loader (#18) #26

chore: release react-style-loader (#18)

chore: release react-style-loader (#18) #26

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
ci:
name: Test with Node.js ${{ matrix.node }} on ${{ matrix.os }}
strategy:
matrix:
node:
- 18
- 20
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install Dependencies
run: yarn --immutable
- name: Test
run: yarn test
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true
- name: Codecov
uses: codecov/codecov-action@v3