Skip to content

chore(deps-dev): bump the formatting group across 1 directory with 3 … #615

chore(deps-dev): bump the formatting group across 1 directory with 3 …

chore(deps-dev): bump the formatting group across 1 directory with 3 … #615

Workflow file for this run

name: Build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '20' ]
name: Build on NodeJS ${{ matrix.node }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup NodeJS ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Test
run: npm run test:ci
- name: Build
run: npm run build