Skip to content

Bump @types/node from 20.12.7 to 20.12.11 #1718

Bump @types/node from 20.12.7 to 20.12.11

Bump @types/node from 20.12.7 to 20.12.11 #1718

Workflow file for this run

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 }}