Skip to content

Merge pull request #56 from guMcrey/dependabot/npm_and_yarn/follow-re… #115

Merge pull request #56 from guMcrey/dependabot/npm_and_yarn/follow-re…

Merge pull request #56 from guMcrey/dependabot/npm_and_yarn/follow-re… #115

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Run a multi-line script
run: |
npm ci
npm run build
npm run test:coverage
# npm run codecov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}