Skip to content

Commit

Permalink
fix(set-shas): remove shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav committed Jul 23, 2021
1 parent 38272c2 commit c090b4d
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ orbs:
# Replace this with your own!
nx: nrwl/nx@<<pipeline.parameters.dev-orb-version>>
orb-tools: circleci/orb-tools@10.0
shellcheck: circleci/shellcheck@2.0

# Pipeline Parameters
## These parameters are used internally by orb-tools. Skip to the Jobs section.
Expand All @@ -23,7 +22,7 @@ parameters:

jobs:
# Define one or more jobs which will utilize your orb's commands and parameters to validate your changes.
integration-test-1:
set-shas-integration-test:
docker:
- image: cimg/node:14.17-browsers
steps:
Expand All @@ -38,17 +37,13 @@ workflows:
jobs:
- orb-tools/lint # Lint Yaml files
- orb-tools/pack # Pack orb source
- shellcheck/check:
dir: ./src/scripts
exclude: SC2148
# Publish development version(s) of the orb.
- orb-tools/publish-dev:
orb-name: nrwl/nx
context: orb-publishing # A restricted context containing your private publishing credentials. Will only execute if approved by an authorized user.
requires:
- orb-tools/lint
- orb-tools/pack
- shellcheck/check
# Trigger an integration workflow to test the
# dev:${CIRCLE_SHA1:0:7} version of your orb
- orb-tools/trigger-integration-tests-workflow:
Expand All @@ -65,7 +60,7 @@ workflows:
when: << pipeline.parameters.run-integration-tests >>
jobs:
# Run any integration tests defined within the `jobs` key.
- integration-test-1
- set-shas-integration-test
# Publish a semver version of the orb. relies on
# the commit subject containing the text "[semver:patch|minor|major|skip]"
# as that will determine whether a patch, minor or major
Expand All @@ -77,9 +72,9 @@ workflows:
context: orb-publishing
add-pr-comment: false
fail-if-semver-not-indicated: true
publish-version-tag: true
publish-version-tag: false
requires:
- integration-test-1
- set-shas-integration-test
filters:
branches:
only:
Expand Down

0 comments on commit c090b4d

Please sign in to comment.