Skip to content

Commit

Permalink
chore(template): sync with ahmadnassri/template-node-lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad Nassri committed Mar 4, 2021
1 parent 1f3ba65 commit c44dbb5
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# ----------------------------------------------------------- #
# Note: this file originates in ahmadnassri/template-template #
# ----------------------------------------------------------- #

name: super-linter

on: [ push, pull_request ]

jobs:
deduplicate:
timeout-minutes: 5

runs-on: ubuntu-latest

# run on external PRs, but not on our internal PRs
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository

steps:
- run: echo ::info ::de-duplicate ran successfully

lint:
timeout-minutes: 5

needs: deduplicate

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: github/super-linter@v3.15.1
env:
LOG_LEVEL: ERROR
VALIDATE_ALL_CODEBASE: false
GITHUB_TOKEN: ${{ github.token }}

0 comments on commit c44dbb5

Please sign in to comment.