mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-13 09:25:49 +00:00
23 lines
493 B
YAML
23 lines
493 B
YAML
name: build test CI
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build-test:
|
|
name: Build Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
|
|
|
|
- name: Setup Node 22.13.1
|
|
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.0.3
|
|
with:
|
|
node-version: '22.13.1'
|
|
|
|
- name: npm-install
|
|
run: npm install
|
|
|
|
- name: npm-build
|
|
run: npm run build
|