Skip to content

build(deps-dev): bump eslint-plugin-unicorn from 51.0.1 to 52.0.0 #3446

build(deps-dev): bump eslint-plugin-unicorn from 51.0.1 to 52.0.0

build(deps-dev): bump eslint-plugin-unicorn from 51.0.1 to 52.0.0 #3446

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
env:
FORCE_COLOR: 2
NODE_COV: lts/* # The Node.js version to run coveralls on
permissions:
contents: read
jobs:
run:
permissions:
checks: write # for coverallsapp/github-action to create new checks
contents: read # for actions/checkout to fetch code
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 14
- 16
- 18
- lts/*
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4.0.2
with:
node-version: '${{ matrix.node }}'
cache: 'npm'
- name: Install npm dependencies
run: npm ci
- name: Run Jest
run: npm run test:jest
if: matrix.node != env.NODE_COV
- name: Run Jest with coverage
run: npm run test:jest:cov
if: matrix.node == env.NODE_COV
- name: Run Coveralls
uses: coverallsapp/github-action@v2.2.3
if: matrix.node == env.NODE_COV
continue-on-error: true
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'