Skip to content

chore: update funding url #44

chore: update funding url

chore: update funding url #44

Workflow file for this run

name: "CI"
env:
COVERAGE_GIT_BRANCH: "main"
COVERAGE_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
COVERAGE_SERVICE_NAME: "github-actions-ci"
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
jobs:
ci:
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"
- name: "Install Node.js"
uses: "actions/setup-node@v3"
with:
cache: "yarn"
node-version: "16"
- name: "Install the dependencies"
run: "yarn install --immutable"
- name: "Lint the code"
run: "yarn lint"
- name: "Run the tests and generate coverage report"
run: "yarn coverage"
- name: "Upload the coverage report to Coveralls"
uses: "coverallsapp/github-action@master"
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "./coverage/lcov.info"