Skip to content

build(deps): bump concurrently from 9.2.3 to 10.0.4 #333

build(deps): bump concurrently from 9.2.3 to 10.0.4

build(deps): bump concurrently from 9.2.3 to 10.0.4 #333

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Lint and Unit Tests
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
# Security: Restrict permissions to minimum required
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: echo "Running build"
- run: pnpm run build
- run: echo "Running lint"
- run: pnpm run lint
- run: echo "Running unit tests"
- run: pnpm run test