Skip to content

Merge pull request #84 from jy95/dependabot/npm_and_yarn/typescript-5… #788

Merge pull request #84 from jy95/dependabot/npm_and_yarn/typescript-5…

Merge pull request #84 from jy95/dependabot/npm_and_yarn/typescript-5… #788

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Set up Node.js ✨
uses: actions/[email protected]
with:
node-version: "lts/*"
- name: Install 💻
run: |
npm install
- name: Build 🤖
run: |
npm run build
- name: Test 🧪
run: |
npm run test:coverage
- name: Run codacy-coverage-reporter
uses: codacy/[email protected]
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: "coverage/lcov.info"