Files
chartdb/.github/workflows/ci.yaml
origranot be04ac2ff2 fix: ci
2024-08-30 15:31:37 +03:00

27 lines
438 B
YAML

name: CI
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build