Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/on_call_build_site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '18'
cache: npm

- run: |
npm ci
Expand Down
15 changes: 13 additions & 2 deletions .github/workflows/on_pr_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ jobs:
uses: ./.github/workflows/on_call_build_site.yaml

staging_test:
uses: ./.github/workflows/on_call_staging_test.yaml
needs: build_site

uses: ./.github/workflows/on_call_staging_test.yaml

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Lint With superlinter
uses: super-linter/super-linter/slim@v5.2.1
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}