Skip to content

chore(deps-dev): bump eslint-plugin-prettier from 5.1.3 to 5.2.1 #1077

chore(deps-dev): bump eslint-plugin-prettier from 5.1.3 to 5.2.1

chore(deps-dev): bump eslint-plugin-prettier from 5.1.3 to 5.2.1 #1077

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
cd test/e2e/example
npm ci
env:
CI: true
- name: Lint
run: |
npm run lint
- name: Run tests and generate coverage info
run: |
npm run test && npm run coverage
env:
CI: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}