Skip to content

chore(deps): update jest monorepo to v29 (major) #185

chore(deps): update jest monorepo to v29 (major)

chore(deps): update jest monorepo to v29 (major) #185

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
jobs:
test-action:
runs-on: ubuntu-latest
name: test
steps:
- name: checkout
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
with:
token: ${{ github.token }}
fetch-depth: 0
- name: setup node
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # tag=v3
with:
node-version: 'node'
cache: 'yarn'
- name: install
run: yarn --frozen-lockfile
- name: test
run: yarn test
- name: coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}