chore: fix clean up action timeout to be executed between resources d… #1423
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Security Linter | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: | |
- dev | |
- UXE-6333-real-time-event-improvement-fork | |
push: | |
branches: | |
- dev | |
- UXE-6333-real-time-event-improvement-fork | |
workflow_dispatch: | |
env: | |
HUSKY: 0 | |
jobs: | |
security-linter: | |
runs-on: ubuntu-latest | |
container: | |
image: node:18-alpine3.18 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install SO deps | |
run: apk add curl bash git | |
- name: Install dependencies | |
run: yarn ci | |
- name: Run security-linter | |
run: yarn security-check |