Skip to content

fix(removeScriptElement): collapse a tag propertly (#1818) #1039

fix(removeScriptElement): collapse a tag propertly (#1818)

fix(removeScriptElement): collapse a tag propertly (#1818) #1039

Workflow file for this run

name: CI
env:
FORCE_COLOR: 2
NODE: 18
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE }}
cache: yarn
- run: yarn install
- run: yarn lint
- run: yarn typecheck
regression:
name: Test regressions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE }}
cache: yarn
- run: yarn install
- run: yarn test-regression
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 16
- 14
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn install
- run: yarn test
- run: yarn test-browser