Skip to content

docs: yarn pkgs

docs: yarn pkgs #24

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"
# Allow workflow to be manually run from the GitHub UI
workflow_dispatch:
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: "lts/*"
- 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: "Add coverage summary"
run: |
echo "## Coverage results" >> $GITHUB_STEP_SUMMARY
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
- name: "Upload the coverage report to Coveralls"
uses: "coverallsapp/github-action@master"
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "./coverage/lcov.info"