Skip to content

Solve errors (#1)

Solve errors (#1) #3

Workflow file for this run

# Testing pipeline2
name: Node.ts CI
on:
push:
branches: ["main"]
pull_request:
branches: ["*"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install packages
run: npm install
# - name: API test
# run: npm run test
- name: Eslint test API
run: npm run lint
# - name: Eslint test client
# run: cd client && npm run lint-client