Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
fix(actions): CI env var (#8)
Browse files Browse the repository at this point in the history
* feat(template): blank ionic angular template
Closes #1

* chore(style): create ide .editorconfig
closes #3

* chore(style): prettier
closes #2. Install, configure, and run prettier

* feat(actions): build and test actions

Closes #4

* fix(actions): npm run lint

* feat(test): puppeteer
Closes #5

* fix(actions): #4 separate npm scripts

* fix(actions): npm run

* feat(template): blank ionic angular template
Closes #1

* chore(style): create ide .editorconfig
closes #3

* chore(style): prettier
closes #2. Install, configure, and run prettier

* feat(actions): build and test actions

Closes #4

* fix(actions): npm run lint

* feat(test): puppeteer
Closes #5

* fix(actions): #4 separate npm scripts

* fix(actions): npm run

* doc(test): karma chrome

Signed-off-by: Eric Swanson <eric.ca.swanson@aa.com>

* fix(actions): e2e

* fix(actions): CI env var

* fix(actions): order of uses and env

* fix(actions): move env to job
  • Loading branch information
ericis authored Feb 26, 2020
1 parent 709ebd0 commit 23edfe0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on: [push]

jobs:
build:
env:
CI: true

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"test:ci": "ng test --no-watch --browsers=ChromeHeadless",
"test:ci": "env CI=true ng test --no-watch --browsers=ChromeHeadless",
"lint": "ng lint",
"e2e": "ng e2e",
"e2e:ci": "ng e2e"
Expand Down

0 comments on commit 23edfe0

Please sign in to comment.