2024-09-22 09:16:53 -05:00
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
docker_tag:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
description: 'Docker tag to use for the verdaccio image'
|
|
|
|
default: '5'
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-10-03 04:09:46 -05:00
|
|
|
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
2024-09-22 09:16:53 -05:00
|
|
|
- name: Use Node (latest)
|
2024-10-01 15:22:01 -05:00
|
|
|
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
|
2024-09-22 09:16:53 -05:00
|
|
|
with:
|
|
|
|
node-version-file: '.nvmrc'
|
|
|
|
- name: Docker test
|
|
|
|
run: |
|
|
|
|
docker run -d -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio:${{ inputs.docker_tag }}
|
|
|
|
- name: login
|
|
|
|
run: npx npm-cli-login -u test -p 1234 -e test@domain.test -r http://localhost:4873
|
|
|
|
- name: Install
|
|
|
|
run: yarn
|
|
|
|
- name: Build
|
|
|
|
run: yarn build
|
|
|
|
- name: Types
|
|
|
|
run: yarn code:types
|
|
|
|
- name: Bump up package
|
|
|
|
run: npm version prerelease --no-git-tag-version --preid $(date +%s%N)
|
|
|
|
- name: publish verdaccio
|
|
|
|
run: npm publish --registry http://localhost:4873
|
|
|
|
- name: install verdaccio
|
|
|
|
run: npm i -g verdaccio --loglevel info --registry http://localhost:4873
|
|
|
|
- name: verdaccio version
|
|
|
|
run: verdaccio --version
|
|
|
|
- name: 'Running the integration test'
|
|
|
|
run: |
|
|
|
|
source scripts/e2e-setup-ci.sh
|
|
|
|
npm init --force
|
|
|
|
npm install jest --registry http://localhost:4873
|
|
|
|
npm install verdaccio --registry http://localhost:4873
|
|
|
|
echo "test('require module should works', () => { const {runServer} = require('verdaccio') });" | tee module.spec.js
|
|
|
|
cat module.spec.js
|
|
|
|
yarn jest
|