Skip to content

Update BlockPilotMC v1.0.5 #37

Update BlockPilotMC v1.0.5

Update BlockPilotMC v1.0.5 #37

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
# Verify source, translations, TypeScript and production builds on supported Node.js versions.
name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [22.x, 24.x]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Verify source and build
run: npm run verify