Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Aug 14, 2023
1 parent 11d7764 commit 522372e
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 6 deletions.
57 changes: 51 additions & 6 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ concurrency:
cancel-in-progress: true

permissions:
security-events: write
actions: read
contents: write
pull-requests: write
security-events: write

on:
workflow_dispatch:
Expand Down Expand Up @@ -51,14 +51,59 @@ jobs:
STNOUPGRADE: 1
STRIPE_CLI_TELEMETRY_OPTOUT: 1

timeout-minutes: 360

strategy:
fail-fast: false

matrix:
language: ["javascript"]
node-version: [18]

steps:
- uses: actions/checkout@v3.5.3

- uses: pnpm/action-setup@v2.4.0
with:
version: 8.6.12
run_install: |
- recursive: true
args: [
--child-concurrency=9999,
--link-workspace-packages=true,
--lockfile-only,
--network-concurrency=9999,
--prefer-frozen-lockfile=false,
--shamefully-hoist=false,
--shared-workspace-lockfile=true,
--strict-peer-dependencies=false,
--unsafe-perm=true
]
- uses: actions/setup-node@v3.7.0
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
cache-dependency-path: ./pnpm-lock.yaml

- run: pnpm install
working-directory: .

- run: pnpm run prepublishOnly
working-directory: .

- uses: github/codeql-action/init@v2.21.3
with:
languages: javascript
languages: ${{ matrix.language }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2.21.3
- uses: github/codeql-action/analyze@v2.21.3
with:
category: "/language:javascript"
category: "/language:${{matrix.language}}"

- run: |
mv ../results ./CodeQL
git add results
git config --global user.name 'CodeQL'
git config --global user.email 'codeql@lightrix.help'
git commit -m "CodeQL Results: $(git log -1 --pretty=%h) $(git log -1 --pretty=%B)"
git pull && git push
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# [files-pipe] 🧪

Allows you to process files in a pipeline.

## Installation

First, install the `files-pipe` component like so:
Expand Down

0 comments on commit 522372e

Please sign in to comment.