Skip to content

build(deps-dev): bump prettier from 3.4.1 to 3.4.2 #6000

build(deps-dev): bump prettier from 3.4.1 to 3.4.2

build(deps-dev): bump prettier from 3.4.1 to 3.4.2 #6000

Workflow file for this run

name: Testing (Pull Request)
on:
pull_request:
types: [edited, labeled, opened, synchronize, reopened]
jobs:
test:
name: Unit tests
runs-on: ubuntu-20.04
steps:
- name: set up node.js
uses: actions/setup-node@v1
with:
node-version: 16.13.1
- name: check out code
uses: actions/checkout@v2
- name: rename config file
run: mv common/utils/clientConfig.sample.ts common/utils/clientConfig.ts
- name: install
run: yarn install
- name: rescript
run: yarn re:build
- name: run eslint
run: yarn lint
- name: run typescript build
run: yarn tsc
- name: unit tests
run: yarn test-coverage
env:
CI: true
- name: upload test coverage to codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}