Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

fix: update package namespace #1

fix: update package namespace

fix: update package namespace #1

Workflow file for this run

---
name: Linting / Unit Tests
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12
- name: Install Dependencies with NPM
id: installation
run: |
npm ci --no-optional
- name: Run Tests
id: testing
run: |
npm run lint
npm run test:ci
# - name: Add Coverage Report
# if: github.event_name == 'pull_request'
# id: coverage-report
# uses: 5monkeys/cobertura-action@v13
# continue-on-error: true
# with:
# path: coverage/cobertura-coverage.xml
# repo_token: ${{ secrets.GITHUB_TOKEN }}
# minimum_coverage: 40
- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v3
with:
name: artifacts
path: coverage