⬆️ Bump @types/chai
from 4.3.12 to 4.3.13
#469
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
jobs: | |
build: | |
name: Build on Node.js ${{ matrix.node }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node: | |
- 18 | |
- 20 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Upgrade npm | |
run: npm install npm@latest -g | |
- name: Setup modules | |
run: npm ci | |
- name: Build | |
run: npm run build | |
name: Build | |
on: | |
push: | |
branches: | |
- main |