Skip to content

Commit e59133c

Browse files
committed
fix: install dev deps so eslint gets installed
1 parent 6e7fea1 commit e59133c

File tree

3 files changed

+68
-1
lines changed

3 files changed

+68
-1
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
fetch-depth: 0
3030

3131
- name: Install Dependencies
32-
run: npm install --workspaces
32+
run: |
33+
npm ci --include=dev
34+
npm ci --workspaces --include=dev --if-present
3335
3436
- name: Code Linting
3537
run: |

experimental-flag.diff

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
2+
index 85494572..8a910aba 100644
3+
--- a/.github/workflows/codeql.yml
4+
+++ b/.github/workflows/codeql.yml
5+
@@ -56,11 +56,11 @@ jobs:
6+
egress-policy: audit
7+
8+
- name: Checkout repository
9+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
10+
+ uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # ratchet:actions/checkout@v5
11+
12+
# Initializes the CodeQL tools for scanning.
13+
- name: Initialize CodeQL
14+
- uses: github/codeql-action/init@497990dfed22177a82ba1bbab381bc8f6d27058f # v3
15+
+ uses: github/codeql-action/init@f47c8e6a9bd05ef3ee422fc8d8663be7fe4bdc61 # ratchet:github/codeql-action/init@v3
16+
with:
17+
languages: ${{ matrix.language }}
18+
# If you wish to specify custom queries, you can do so here or in a config file.
19+
@@ -86,6 +86,6 @@ jobs:
20+
# ./location_of_script_within_repo/buildscript.sh
21+
22+
- name: Perform CodeQL Analysis
23+
- uses: github/codeql-action/analyze@497990dfed22177a82ba1bbab381bc8f6d27058f # v3
24+
+ uses: github/codeql-action/analyze@f47c8e6a9bd05ef3ee422fc8d8663be7fe4bdc61 # ratchet:github/codeql-action/analyze@v3
25+
with:
26+
category: '/language:${{matrix.language}}'

ratchet-0.11.4.diff

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
2+
index 85494572..eb057b0c 100644
3+
--- a/.github/workflows/codeql.yml
4+
+++ b/.github/workflows/codeql.yml
5+
@@ -67,25 +67,29 @@ jobs:
6+
# By default, queries listed here will override any specified in a config file.
7+
# Prefix the list here with "+" to use these queries and those in the config file.
8+
9+
- # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
10+
- # queries: security-extended,security-and-quality
11+
-
12+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
13+
# If this step fails, then you should remove it and run the build manually (see below)
14+
+
15+
- name: Autobuild
16+
- uses: github/codeql-action/autobuild@497990dfed22177a82ba1bbab381bc8f6d27058f # v3
17+
+ # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
18+
+ # queries: security-extended,security-and-quality
19+
20+
+
21+
+ uses: github/codeql-action/autobuild@497990dfed22177a82ba1bbab381bc8f6d27058f # v3
22+
# ℹ️ Command-line programs to run using the OS shell.
23+
+
24+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
25+
26+
+
27+
# If the Autobuild fails above, remove it and uncomment the following three lines.
28+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
29+
30+
+
31+
# - run: |
32+
# echo "Run, Build Application using script"
33+
# ./location_of_script_within_repo/buildscript.sh
34+
-
35+
- name: Perform CodeQL Analysis
36+
+
37+
uses: github/codeql-action/analyze@497990dfed22177a82ba1bbab381bc8f6d27058f # v3
38+
with:
39+
category: '/language:${{matrix.language}}'

0 commit comments

Comments
 (0)