Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

1.0.0-beta.19

1.0.0-beta.19 #63

Workflow file for this run

name: codecov
on:
push:
branches:
- main
jobs:
jest:
runs-on: [ubuntu-latest]
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Restore shared yarn cache
uses: actions/cache/restore@v3
with:
path: .yarn/cache
key: ${{ runner.os }}-yarn-shared
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: yarn install --immutable
- name: Run Jest in @sugarform/core
run: yarn workspace @sugarform/core test --verbose --coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3