Skip to content

Commit

Permalink
Fix minor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAurelius committed Jan 13, 2025
1 parent 9c6a44e commit 49face5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_cms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: Build Sanity CMS
on:
push:
paths:
- 'carbon-projects/**'
- "carbon-projects/**"
branches: "*"
pull_request:
paths:
- 'carbon-projects/**'
- "carbon-projects/**"
branches: "*"

jobs:
Expand All @@ -30,8 +30,8 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: 'carbon-projects/package-lock.json' # Changed this line
cache: "npm"
cache-dependency-path: "carbon-projects/package-lock.json" # Changed this line

- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion carbon-projects/lib/sectors.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const sectors = [
{ title: "Waste handling and disposal", value: "waste-h-d" }
{ title: "Waste handling and disposal", value: "waste-h-d" },
];

0 comments on commit 49face5

Please sign in to comment.