Skip to content

[6.5.0] Upgrade dependencies and fix not visible person in statistics #56

[6.5.0] Upgrade dependencies and fix not visible person in statistics

[6.5.0] Upgrade dependencies and fix not visible person in statistics #56

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
# Here you define the name of your workflow in this case "build"
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
# The following lines will Cache the npm modules when running the test
# so the actions will be faster
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Run npm install
run: npm i
- name: Linting code
run: npm run lint
- name: Check code style
run: npm run format:check:ci
- name: Run test:ci command
run: npm run test:ci
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}