Skip to content

Merge pull request #48 from guMcrey/dependabot/npm_and_yarn/axios-1.7.4 #109

Merge pull request #48 from guMcrey/dependabot/npm_and_yarn/axios-1.7.4

Merge pull request #48 from guMcrey/dependabot/npm_and_yarn/axios-1.7.4 #109

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 }}