Bump the misc group across 1 directory with 9 updates #1734
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: unit-tests | |
on: | |
pull_request: | |
branches: | |
- dev | |
- releases/v1 | |
- releases/v2 | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*.*' | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install Yarn | |
run: npm install -g yarn | |
- name: Install and Test | |
run: | | |
yarn install --frozen-lockfile | |
yarn lint:check | |
yarn lint:format:check | |
yarn test | |
- name: Uploade CodeCov Report | |
uses: codecov/codecov-action@v4.3.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |