Skip to content

chore(deps-dev): Bump eslint-plugin-jest from 26.8.7 to 28.2.0 #5555

chore(deps-dev): Bump eslint-plugin-jest from 26.8.7 to 28.2.0

chore(deps-dev): Bump eslint-plugin-jest from 26.8.7 to 28.2.0 #5555

Workflow file for this run

name: Build and Test Code
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Npm Install
run: npm ci
- name: Lint Sources
run: npm run lint
- name: Build Sources
timeout-minutes: 2
run: npm run build
- name: Test Sources
run: npm run test
- name: Upload coverage
uses: coverallsapp/github-action@v1.2.4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./tmp/coverage/lcov.info