Skip to content

build(deps): bump actions/checkout from 3.6.0 to 4.1.1 #1132

build(deps): bump actions/checkout from 3.6.0 to 4.1.1

build(deps): bump actions/checkout from 3.6.0 to 4.1.1 #1132

Workflow file for this run

name: Tests
on:
push:
branches:
- next
pull_request:
branches:
- '*'
env:
CI: true
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [18.x, 20.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.0.0
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm i
- name: Lint
run: npm run lint
- name: Run tests
run: npm run test:ci
- name: Coverage report
uses: codecov/codecov-action@v3.1.4