2020-06-18 23:01:57 +02:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 3 * * 5'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
|
|
|
|
name: 'E2E Angular CLI with verdaccio'
|
|
|
|
jobs:
|
|
|
|
npm:
|
2021-12-23 00:14:53 +01:00
|
|
|
name: 'npm6:angular example'
|
2020-06-18 23:01:57 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 15:19:20 +08:00
|
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2020-06-18 23:01:57 +02:00
|
|
|
|
2023-05-07 13:57:49 +02:00
|
|
|
- name: 'Use Node.js 16.x'
|
2023-04-22 11:43:42 +02:00
|
|
|
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
|
2020-06-18 23:01:57 +02:00
|
|
|
with:
|
2023-05-07 13:57:49 +02:00
|
|
|
node-version: 16.x
|
2020-06-18 23:01:57 +02:00
|
|
|
- name: 'install latest npm'
|
2021-02-25 21:06:10 +01:00
|
|
|
run: npm i -g npm@latest-6
|
2020-06-18 23:01:57 +02:00
|
|
|
- name: Install Dependencies
|
2020-10-11 10:06:21 -07:00
|
|
|
run: yarn install
|
2020-06-18 23:01:57 +02:00
|
|
|
- name: 'Run verdaccio in the background'
|
|
|
|
run: |
|
2021-05-13 23:13:57 +02:00
|
|
|
nohup yarn node ./scripts/run-verdaccio.js --config ./scripts/e2e-config.yaml &
|
2020-06-18 23:01:57 +02:00
|
|
|
- name: 'Ping to verdaccio'
|
|
|
|
run: |
|
|
|
|
npm ping --registry http://localhost:4873
|
|
|
|
- name: 'Running the integration test'
|
|
|
|
run: |
|
|
|
|
source scripts/e2e-setup-ci.sh
|
|
|
|
echo "registry=http://localhost:4873" > ~/.npmrc
|
|
|
|
npm config set loglevel="http"
|
|
|
|
npm config set fetch-retries="5"
|
|
|
|
npm config set fetch-retry-factor="50"
|
|
|
|
npm config set fetch-retry-mintimeout="20000"
|
|
|
|
npm config set fetch-retry-maxtimeout="80000"
|
|
|
|
npm install -g @angular/cli
|
|
|
|
ng new verdaccio-angular --interactive=false
|
|
|
|
|
|
|
|
cd verdaccio-angular
|
|
|
|
npm install @angular-devkit/core@next @babel/preset-env @babel/core -D
|
|
|
|
|
|
|
|
npm run ng build --aot
|
2020-10-09 09:53:44 -07:00
|
|
|
npm7:
|
|
|
|
name: 'npm7:angular example'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 15:19:20 +08:00
|
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2020-10-09 09:53:44 -07:00
|
|
|
|
2023-05-07 13:57:49 +02:00
|
|
|
- name: 'Use Node.js 16.x'
|
2023-04-22 11:43:42 +02:00
|
|
|
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
|
2020-10-09 09:53:44 -07:00
|
|
|
with:
|
2023-05-07 13:57:49 +02:00
|
|
|
node-version: 16.x
|
2020-10-09 09:53:44 -07:00
|
|
|
- name: 'install latest npm'
|
|
|
|
run: npm i -g npm@next-7
|
|
|
|
- name: Install Dependencies
|
2021-12-23 00:14:53 +01:00
|
|
|
run: yarn install
|
|
|
|
- name: 'Run verdaccio in the background'
|
|
|
|
run: |
|
|
|
|
nohup yarn node ./scripts/run-verdaccio.js --config ./scripts/e2e-config.yaml &
|
|
|
|
- name: 'Ping to verdaccio'
|
|
|
|
run: |
|
|
|
|
npm ping --registry http://localhost:4873
|
|
|
|
- name: 'Running the integration test'
|
|
|
|
run: |
|
|
|
|
source scripts/e2e-setup-ci.sh
|
|
|
|
echo "registry=http://localhost:4873" > ~/.npmrc
|
|
|
|
npm config set loglevel="silent"
|
|
|
|
npm config set fetch-retries="5"
|
|
|
|
npm config set fetch-retry-factor="50"
|
|
|
|
npm config set fetch-retry-mintimeout="20000"
|
|
|
|
npm config set fetch-retry-maxtimeout="80000"
|
|
|
|
npm install -g @angular/cli
|
|
|
|
ng new verdaccio-angular --interactive=false
|
|
|
|
|
|
|
|
cd verdaccio-angular
|
|
|
|
npm install @angular-devkit/core@next @babel/preset-env @babel/core -D
|
|
|
|
|
|
|
|
npm run ng build --aot
|
|
|
|
npm8:
|
|
|
|
name: 'npm8:angular example'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 15:19:20 +08:00
|
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2021-12-23 00:14:53 +01:00
|
|
|
|
|
|
|
- name: 'Use Node.js 16.x'
|
2023-04-22 11:43:42 +02:00
|
|
|
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
|
2021-12-23 00:14:53 +01:00
|
|
|
with:
|
|
|
|
node-version: 16.x
|
|
|
|
- name: 'install latest npm'
|
|
|
|
run: npm i -g npm@next-8
|
|
|
|
- name: Install Dependencies
|
2020-10-11 10:06:21 -07:00
|
|
|
run: yarn install
|
2020-10-09 09:53:44 -07:00
|
|
|
- name: 'Run verdaccio in the background'
|
|
|
|
run: |
|
2021-05-13 23:13:57 +02:00
|
|
|
nohup yarn node ./scripts/run-verdaccio.js --config ./scripts/e2e-config.yaml &
|
2020-10-09 09:53:44 -07:00
|
|
|
- name: 'Ping to verdaccio'
|
|
|
|
run: |
|
|
|
|
npm ping --registry http://localhost:4873
|
|
|
|
- name: 'Running the integration test'
|
|
|
|
run: |
|
|
|
|
source scripts/e2e-setup-ci.sh
|
|
|
|
echo "registry=http://localhost:4873" > ~/.npmrc
|
|
|
|
npm config set loglevel="silent"
|
|
|
|
npm config set fetch-retries="5"
|
|
|
|
npm config set fetch-retry-factor="50"
|
|
|
|
npm config set fetch-retry-mintimeout="20000"
|
|
|
|
npm config set fetch-retry-maxtimeout="80000"
|
|
|
|
npm install -g @angular/cli
|
|
|
|
ng new verdaccio-angular --interactive=false
|
|
|
|
|
|
|
|
cd verdaccio-angular
|
|
|
|
npm install @angular-devkit/core@next @babel/preset-env @babel/core -D
|
|
|
|
|
2020-10-11 10:06:21 -07:00
|
|
|
npm run ng build --aot
|
2023-02-09 21:42:24 +01:00
|
|
|
npm9:
|
|
|
|
name: 'npm9:angular example'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 15:19:20 +08:00
|
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2023-02-09 21:42:24 +01:00
|
|
|
|
|
|
|
- name: 'Use Node.js 18.x'
|
2023-04-22 11:43:42 +02:00
|
|
|
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
|
2023-02-09 21:42:24 +01:00
|
|
|
with:
|
2023-06-03 08:16:58 +02:00
|
|
|
node-version: 20.x
|
2023-02-09 21:42:24 +01:00
|
|
|
- name: Install Dependencies
|
|
|
|
run: yarn install
|
|
|
|
- name: 'Run verdaccio in the background'
|
|
|
|
run: |
|
|
|
|
nohup yarn node ./scripts/run-verdaccio.js --config ./scripts/e2e-config.yaml &
|
|
|
|
- name: 'Ping to verdaccio'
|
|
|
|
run: |
|
|
|
|
npm ping --registry http://localhost:4873
|
|
|
|
- name: 'Running the integration test'
|
|
|
|
run: |
|
|
|
|
source scripts/e2e-setup-ci.sh
|
|
|
|
echo "registry=http://localhost:4873" > ~/.npmrc
|
|
|
|
npm config set loglevel="silent"
|
|
|
|
npm config set fetch-retries="5"
|
|
|
|
npm config set fetch-retry-factor="50"
|
|
|
|
npm config set fetch-retry-mintimeout="20000"
|
|
|
|
npm config set fetch-retry-maxtimeout="80000"
|
|
|
|
npm install -g @angular/cli
|
|
|
|
ng new verdaccio-angular --interactive=false
|
|
|
|
|
|
|
|
cd verdaccio-angular
|
|
|
|
npm install @angular-devkit/core@next @babel/preset-env @babel/core -D
|
|
|
|
|
2023-03-31 08:28:41 +02:00
|
|
|
npm run ng build --aot
|