Skip to content

docs: Lighthouse-Badger[bot]: Results Added #238

docs: Lighthouse-Badger[bot]: Results Added

docs: Lighthouse-Badger[bot]: Results Added #238

Workflow file for this run

name: Codecov
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.actor != 'github-actions[bot]' }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3.3.0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- uses: actions/cache@v3
id: yarn-cache
with:
path: |
~/cache
!~/cache/exclude
**/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn
- name: Test
run: yarn test -u
- name: Codecov
uses: codecov/codecov-action@v3