Skip to content
This repository was archived by the owner on Apr 12, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'
- name: Install project dependencies
run: npm ci
- name: Install Angular CLI
run: npm i --global @angular/cli
- name: Lint code
run: ng lint
- name: Run unit tests
uses: ianwalter/playwright-container@v3.0.0
with:
args: npm run test-headless
- name: Build the webapp
run: ng build
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

Loading