Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore(deps): bump body-parser from 2.2.0 to 2.2.1 #165

chore(deps): bump body-parser from 2.2.0 to 2.2.1

chore(deps): bump body-parser from 2.2.0 to 2.2.1 #165

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-lint-test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
shouldRunAll:
- ${{ contains(github.ref, 'main') || contains(github.ref, 'master') || contains(github.ref, 'release') }}
# Run on 20,22 for master and release branches, else only on 20
node-version: [20.x, 22.x, 24.x]
exclude:
- shouldRunAll: false
node-version: 20.x
- shouldRunAll: false
node-version: 24.x
env:
base_branch: ${{ github.event.pull_request.base.ref }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Workspace
uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node-version }}
- name: Run Lint, Build and Test
run: |
if [[ ! -z $base_branch ]]; then
yarn turbo run build --filter="[origin/$base_branch]..."
yarn turbo run lint test --filter="[origin/$base_branch]"
else
yarn turbo run lint build test
fi