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

Bump babel-jest from 29.6.2 to 29.6.3 #277

Bump babel-jest from 29.6.2 to 29.6.3

Bump babel-jest from 29.6.2 to 29.6.3 #277

Workflow file for this run

name: Test & Coverage
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v1
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
- name: Install dependencies
run: yarn
- name: Run the tests
run: yarn test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}