Skip to content

βš™ Separate configs and parsers (#34) #109

βš™ Separate configs and parsers (#34)

βš™ Separate configs and parsers (#34) #109

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 }}