Skip to content

chore(deps): update babel monorepo #92

chore(deps): update babel monorepo

chore(deps): update babel monorepo #92

Workflow file for this run

---
name: Test
on:
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
node-version: [18.x]
name: Node
runs-on: ubuntu-latest
steps:
- name: Checkout ${{ matrix.node-version }}
uses: actions/checkout@v3
- name: Setup and Test ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install node modules
shell: bash
run: yarn
- name: Build
shell: bash
run: yarn build
- name: Unit testing and collect coverage
shell: bash
run: yarn test:unit
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4-beta
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}