Skip to content

chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 #1112

chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0

chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 #1112

Workflow file for this run

name: Node.js CI
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
permissions:
contents: read
env:
CI: true
FORCE_COLOR: 2
NODE_COV: 16 # The Node.js version to run coveralls on
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
submodules: recursive
- uses: actions/[email protected]
with:
node-version: lts/*
cache: npm
- run: npm ci
- run: npm run lint
test:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
permissions:
checks: write # for coverallsapp/github-action to create new checks
contents: read # for actions/checkout to fetch code
strategy:
fail-fast: false
matrix:
node:
- '14'
- '16'
- '18'
- lts/*
steps:
- uses: actions/[email protected]
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm install -g [email protected]
if: matrix.node == '14'
- run: npm ci
- run: npm run build --if-present
- name: Run Tests
run: npm run unit-tests
if: matrix.node != env.NODE_COV
- name: Run Jest with coverage
run: npm run unit-tests -- --coverage
if: matrix.node == env.NODE_COV
- name: Run Coveralls
uses: coverallsapp/[email protected]
if: matrix.node == env.NODE_COV
continue-on-error: true
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'