Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

build(deps): bump semver from 5.7.1 to 5.7.2 #310

build(deps): bump semver from 5.7.1 to 5.7.2

build(deps): bump semver from 5.7.1 to 5.7.2 #310

Workflow file for this run

name: ci
on:
push:
branches:
- master
- release/**
pull_request:
env:
NODE_OPTIONS: '--stack-trace-limit=10000'
jobs:
lint:
name: lint and codecov
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: yarn install
- run: yarn lint
- run: yarn codecov
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
node: [8, 10, 12, 14, 16, 18]
test-command: ['test', 'test:integration']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install --ignore-engines # Webpack 5 does not support Node v8, but we still do for Webpack 4
- run: yarn ${{ matrix.test-command }}