[NO-ISSUE] chore: remove sass warning during compilation, 1.77.6 the last version withou warning #659
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 | |
push: | |
branches: | |
- dev | |
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 |