Skip to content

fix(v8): do not ignore failures when running git #908

fix(v8): do not ignore failures when running git

fix(v8): do not ignore failures when running git #908

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Lint using ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use latest Node.js LTS
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
test:
name: Test on Node.js
uses: pkgjs/action/.github/workflows/node-test.yaml@v0
with:
runs-on: ubuntu-latest, macos-latest
test-command: npm run coverage:ci
post-test-steps: |
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3