Skip to content

build(deps): bump eslint from 8.57.0 to 9.9.1 #652

build(deps): bump eslint from 8.57.0 to 9.9.1

build(deps): bump eslint from 8.57.0 to 9.9.1 #652

Workflow file for this run

name: Build & Test
on:
push:
branches: [main]
pull_request:
env:
GIT_PAT: ${{ secrets.GIT_PAT }}
GIT_USERNAME: ${{ secrets.GIT_USERNAME }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
jobs:
tests:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Download dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run Jest
run: npm run test:coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3