Skip to content

Bump eslint-config-next from 14.2.13 to 15.1.1 #37

Bump eslint-config-next from 14.2.13 to 15.1.1

Bump eslint-config-next from 14.2.13 to 15.1.1 #37

Workflow file for this run

name: Lint and Tests
on:
pull_request:
branches:
- master
jobs:
lint_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 22.11.0
cache: npm
- run: cp .env.example .env
- run: npm ci
- run: make lint
- run: make coverage
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage/lcov-report
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}