Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test and build pipeline #2

Merged
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/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Test and build

on:
workflow_dispatch:
pull_request:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.10.0

- name: Install dependencies
run: npm ci

# TODO: setup ESLint
# - name: Lint
# run: npm run lint

- name: Build
run: npm run build

- name: Test
run: npm run test:ci
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:ci": "ng test --no-watch --no-progress --browsers=ChromeHeadless",
"lint": "ng lint & sass-lint -c ./.sass-lint.yml -v -q",
"docs": "sassdoc src --dest=sassdoc --verbose && npx compodoc -p tsconfig.json"
},
Expand Down
5 changes: 5 additions & 0 deletions src/app/__tests__/demo.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
describe('Demo test', () => {
it('should pass', () => {
expect('Christo nihil præponere').toBeTruthy();
});
})