Skip to content

chore: config docker #2

chore: config docker

chore: config docker #2

Workflow file for this run

name: Configure Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js with version 20
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: npm ci
# - name: Verify eslint
# run: npx eslint .
# - name: Run tests
# run: npm test