Skip to content

Update README.md

Update README.md #108

Workflow file for this run

name: πŸ”Ž Test
on:
push:
branches:
- main
pull_request:
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: πŸ”Ž Test
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: βŽ” Setup node
uses: actions/setup-node@v4
- name: πŸ“₯ Install deps
run: npm install --frozen-lockfile
- name: βŽ” Run dependencies
run: ./scripts/run-dependencies.sh
- name: πŸ”Ž Integration test
run: npm run itest
- name: πŸ”Ž Test
run: npm run test
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}