Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

test

test #1278

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
schedule:
- cron: "0 */3 * * *"
jobs:
test:
if: github.run_number != 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm i -g pnpm && pnpm i
name: Install dependencies
- name: Run unit tests
run: pnpm test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
directory: ./packages/ui
token: ${{ secrets.CODECOV_TOKEN }}
flags: esbuild-plugin-removetestid