🕋 Updates issues for building/ checking app after PR

This commit is contained in:
Alicia Sykes
2021-09-08 20:12:11 +01:00
parent bb25389a71
commit caee352d9d
3 changed files with 68 additions and 0 deletions

21
.github/workflows/code-linter.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
# Lints code merged into master branch
name: Lint Code Base
on:
push:
pull_request:
branches: [master]
jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}