mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
22b85de14d
Bumps [actions/checkout](https://github.com/actions/checkout) from v2.3.2 to v2.3.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.2...a81bbbf8298c0fa03ea29cdc473d45769f953675) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
528 B
YAML
25 lines
528 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.verdaccio.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
|