mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
9700ba952b
Updates the requirements on [actions/setup-node](https://github.com/actions/setup-node) to permit the latest version.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](46071b5c7a
)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
617 B
YAML
27 lines
617 B
YAML
name: E2E CLI
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
ci:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
node_version: [14]
|
|
|
|
name: ${{ matrix.os }} / Node ${{ matrix.node_version }}
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2.3.1
|
|
- name: Use Node ${{ matrix.node_version }}
|
|
uses: actions/setup-node@v2.1.5
|
|
with:
|
|
node_version: ${{ matrix.node_version }}
|
|
- name: Install
|
|
run: yarn install --immutable
|
|
- name: Build
|
|
run: yarn code:build
|
|
- name: Test CLI
|
|
run: yarn run test:e2e:cli
|