-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3715f8
commit 744ab72
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
on: | ||
schedule: | ||
- cron: '0 */4 * * *' | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
paths: | ||
- .github/workflows/e2e-angular-workflow.yml | ||
- scripts/e2e-setup-ci.sh | ||
|
||
name: 'E2E Angular' | ||
jobs: | ||
chore: | ||
name: 'Validating Angular' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
|
||
- name: 'Use Node.js 10.x' | ||
uses: actions/setup-node@master | ||
with: | ||
version: 10.x | ||
|
||
- name: 'Build the standard bundle' | ||
run: | | ||
node ./scripts/run-yarn.js build:cli | ||
- name: 'Running the integration test' | ||
run: | | ||
source scripts/e2e-setup-ci.sh | ||
yarn dlx -p @angular/cli@next ng new berry-angular --interactive=false | ||
cd berry-angular | ||
yarn add @yarnpkg/pnpify @angular-devkit/core@next @babel/preset-env @babel/core -D | ||
yarn unplug @angular/platform-browser @angular/core @angular/common | ||
yarn pnpify ng build --aot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters