Bumps [systeminformation](https://github.com/sebhildebrandt/systeminformation) from 5.3.0 to 5.3.1. - [Release notes](https://github.com/sebhildebrandt/systeminformation/releases) - [Changelog](https://github.com/sebhildebrandt/systeminformation/blob/master/CHANGELOG.md) - [Commits](https://github.com/sebhildebrandt/systeminformation/commits) Signed-off-by: dependabot[bot] <support@github.com> push gitlab ci Atualizar .gitlab-ci.yml gitlab push push gitlab ci pusg gitlab ci modify main ci push push push push gitlab push gitlab push gitlab push gitlab push gitlab push gitlab gitlab CI/CD github CI/CD update
20 lines
602 B
YAML
20 lines
602 B
YAML
default:
|
|
image: node:current-buster
|
|
before_script:
|
|
- |
|
|
if [[ ! -f package.json ]]; then
|
|
echo "No package.json found! A package.json file is required to publish a package to GitLab's NPM registry."
|
|
echo 'For more information, see https://docs.gitlab.com/ee/user/packages/npm_registry/#creating-a-project'
|
|
exit 1
|
|
fi
|
|
- NPM_PACKAGE_NAME=$(node -p "require('./package.json').name")
|
|
- NPM_PACKAGE_VERSION=$(node -p "require('./package.json').version")
|
|
|
|
test_package:
|
|
stage: test
|
|
script:
|
|
- |
|
|
npm install -f
|
|
npm update
|
|
npm run test
|