forked from vendure-ecommerce/vendure
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (65 loc) · 2.04 KB
/
publish_and_install.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Publish & Install
on:
push:
branches:
- master
- major
- minor
pull_request:
branches:
- master
- major
- minor
defaults:
run:
shell: bash
jobs:
publish_install:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [12.x, 14.x, 16.x]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Verdaccio
run: |
npm install -g verdaccio
npm install -g verdaccio-auth-memory
npm install -g verdaccio-memory
npm install -g [email protected]
tmp_registry_log=`mktemp`
mkdir -p $HOME/.config/verdaccio
cp -v ./.github/workflows/verdaccio/config.yaml $HOME/.config/verdaccio/config.yaml
nohup verdaccio --config $HOME/.config/verdaccio/config.yaml &>$tmp_registry_log &
npm-auth-to-token -u test -p test -e [email protected] -r http://0.0.0.0:4873
- name: Windows dependencies
if: matrix.os == 'windows-latest'
run: npm install -g @angular/cli
- name: Install & bootstrap
run: |
yarn config set unsafe-perm true
yarn install --network-timeout 1000000
yarn bootstrap
env:
CI: true
- name: Publish to Verdaccio
run: |
yarn lerna publish prepatch --preid ci --no-push --no-git-tag-version --no-commit-hooks --force-publish "*" --yes --dist-tag ci --registry http://0.0.0.0:4873
- name: Install via @vendure/create
run: |
mkdir -p $HOME/install
cd $HOME/install
npm set registry=http://0.0.0.0:4873
npm dist-tag ls @vendure/create
npx @vendure/create@ci test-app --ci --use-npm --log-level info
- name: Server smoke tests
run: |
cd $HOME/install/test-app
npm run start &
node $GITHUB_WORKSPACE/.github/workflows/scripts/smoke-tests