Skip to content

chore: add .gitattributes file (#167) #91

chore: add .gitattributes file (#167)

chore: add .gitattributes file (#167) #91

Workflow file for this run

---
name: coverage
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
name: coverage
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Node 18
uses: actions/setup-node@v3
with:
always-auth: false
node-version: 18
- name: Run npm install
run: npm install
- name: Run Tests
run: npm run test:coverage
env:
CI: true
- name: Update Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
if: success()