Files
CommonWebComponents/.gitea/workflows/ci.yml
Marc Lorenz 6407ea531e
All checks were successful
CI / test-and-build (push) Successful in 9m32s
Component import from other project
2026-03-24 09:50:34 +01:00

29 lines
428 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build
run: npm run build