Skip to content

chore(deps-dev): bump esbuild from 0.21.5 to 0.22.0 #349

chore(deps-dev): bump esbuild from 0.21.5 to 0.22.0

chore(deps-dev): bump esbuild from 0.21.5 to 0.22.0 #349

name: '🔬 CI — Compatibility'
on:
pull_request:
workflow_dispatch:
jobs:
node:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
node-version:
[
'06',
'07',
'08',
'09',
'10',
'11',
'12',
'13',
'14',
'15',
'16',
'17',
'18',
'19',
'20',
'21',
'latest',
]
name: Node.js ${{ matrix.node-version }}
steps:
- name: ➕ Actions - Checkout
uses: actions/checkout@v4
- name: ➕ Actions - Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: ➕ Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-linux-${{ hashFiles('package-lock.json') }}
restore-keys: npm-linux-
- name: 📦 Installing Dependencies
run: npm ci
- name: 🤹🏻‍♀️ Building the Project
run: npm run build
# Testing via Docker Official Images
- name: 🔬 Node ${{ matrix.node-version }}
run: FILTER=node-${{ matrix.node-version }} npm run test:ci