Skip to content

fix(donate-code): rename isEInvoiceDonateCode to isDonateCode to simp… #5

fix(donate-code): rename isEInvoiceDonateCode to isDonateCode to simp…

fix(donate-code): rename isEInvoiceDonateCode to isDonateCode to simp… #5

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
- v2
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: npm install
- name: Test
run: npm run test:cov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}