24 lines
506 B
YAML
24 lines
506 B
YAML
name: PR Checks
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
pr-checks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Node
|
|
run: |
|
|
apt-get update && apt-get install -y nodejs
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
# super-linter needs the full git history to get the
|
|
# list of files that changed across commits
|
|
fetch-depth: 0
|
|
|
|
- name: Super Linter
|
|
uses: super-linter/super-linter@v7.3.0
|