Skip to content

fix(deps): bump actions/checkout from 4.1.5 to 4.1.6 #3514

fix(deps): bump actions/checkout from 4.1.5 to 4.1.6

fix(deps): bump actions/checkout from 4.1.5 to 4.1.6 #3514

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- 'dependabot/**'
- 'renovate/**'
pull_request:
jobs:
build-lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x]
env:
OS: ${{ matrix.os }}
NODE_VERSION: ${{ matrix.node-version }}
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run lint
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [16.x, 18.x, 20.x]
env:
OS: ${{ matrix.os }}
NODE_VERSION: ${{ matrix.node-version }}
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@6d798873df2b1b8e5846dba6fb86631229fbcb17 # v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: OS,NODE_VERSION
fail_ci_if_error: false