Skip to content

fix: streamline Docker build process by removing redundant npm commands #25

fix: streamline Docker build process by removing redundant npm commands

fix: streamline Docker build process by removing redundant npm commands #25

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run checks
run: npm run check