mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
2c590917b1
* fix: npm7 audit fix and bulk endpoint * chore: update registry * chore: update registry
24 lines
524 B
YAML
24 lines
524 B
YAML
name: Docker & Publish Pre-check
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
testDocker:
|
|
name: Test Docker Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.3
|
|
- name: Build
|
|
run: docker build .
|
|
env:
|
|
VERDACCIO_BUILD_REGISTRY: https://registry.npmjs.org
|
|
|
|
testVerdaccio:
|
|
name: Test Verdaccio Publish
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.3
|
|
- name: Publish
|
|
uses: verdaccio/github-actions/publish@v0.4.0
|
|
with:
|
|
args: -d
|