Skip to content

Commit

Permalink
Merge pull request #2 from earendil-omarinheiro/master
Browse files Browse the repository at this point in the history
Test and build pipeline
  • Loading branch information
antonioconselheiro authored Nov 26, 2023
2 parents c2be706 + e1de59f commit b50174e
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
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();
});
})

0 comments on commit b50174e

Please sign in to comment.