Skip to content

🧼 Clean older code #88

🧼 Clean older code

🧼 Clean older code #88

Workflow file for this run

name: 🧪 Test
on:
push:
jobs:
test:
name: 🧪 Test
runs-on: ubuntu-latest
steps:
- name: 📚 Checkout
uses: actions/checkout@v4
- name: 🔵 Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: ⏬ Install Dependencies
run: yarn install --frozen-lockfile
- name: 🧪 Run tests
run: npm run test:cov
- name: 💯 Coverage
uses: paambaati/[email protected]
if: github.ref == 'refs/heads/master'
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}