| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- name: Publish & Install
- # Temporarily disabled this workflow because the last step (installing from Verdaccio) is flaky and
- # randomly failing despite numerous attempts to stabilize. Therefore this is not useful at
- # the moment.
- # on:
- # push:
- # branches:
- # - master
- # pull_request:
- # branches:
- # - master
- on:
- deployment
- jobs:
- publish_install:
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [ubuntu-latest, macOS-latest]
- node-version: [10.x, 12.x]
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- - name: Install & bootstrap
- run: |
- yarn install
- yarn bootstrap
- env:
- CI: true
- - name: Install Verdaccio
- run: |
- npm install -g verdaccio
- mkdir -p $HOME/.config/verdaccio
- cp -v ./.github/workflows/verdaccio/config.yaml $HOME/.config/verdaccio/config.yaml
- verdaccio --config $HOME/.config/verdaccio/config.yaml &
- - name: Publish to Verdaccio
- run: |
- npm set //registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}
- npm set //localhost:4873/:_authToken=${{ secrets.VERDACCIO_AUTH_TOKEN }}
- npm set registry=http://localhost:4873/
- yarn lerna publish prepatch --preid ci --no-push --no-git-tag-version --no-commit-hooks --force-publish "*" --yes --dist-tag ci --registry http://localhost:4873/
- - name: Install via @vendure/create
- run: |
- mkdir -p $HOME/install
- cd $HOME/install
- npm dist-tag ls @vendure/create
- npx @vendure/create@ci test-app --ci --use-npm
|