Skip to content

Commit

Permalink
Add checkout steps (fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukiffer committed Nov 9, 2022
1 parent 1dfe579 commit 408aa4e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
outputs:
semver: ${{ steps.get-semver.outputs.semver }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
node-version: 16.x
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@ jobs:
# RUN PRE-COMMIT VALIDATION
# -------------------------------------------------------------------------------------------------------------------
pre-commit:
name: Pre-Commit
name: Run pre-commit validation
runs-on: ubuntu-latest
if: inputs.runPreCommit == true
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: 3.x
Expand All @@ -41,10 +44,13 @@ jobs:
# RUN DEFAULT LINTERS
# -------------------------------------------------------------------------------------------------------------------
lint:
name: Linters
name: Run default linters
runs-on: ubuntu-latest
if: inputs.runDefaultLinters == true
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
node-version: 16.x
Expand Down

0 comments on commit 408aa4e

Please sign in to comment.