Skip to content

Commit 4618974

Browse files
improve CI workflow with better naming and updated dependencies
- Rename lint.yml to ci.yml for better clarity - Update Node.js from 18 to 24 (matches Volta config) - Enable Corepack for Yarn v4 support - Update to actions/setup-node@v4 and actions/checkout@v4 - Use --immutable flag for yarn install (Yarn v4 best practice) - Add descriptive job and step names
1 parent a9bf865 commit 4618974

4 files changed

Lines changed: 35 additions & 18 deletions

File tree

.claude/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"typescript-lsp@claude-plugins-official": true,
99
"superpowers@claude-plugins-official": true
1010
},
11+
"defaultMode": "bypassPermissions",
1112
"hooks": {
1213
"Stop": [
1314
{

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- development
7+
pull_request:
8+
9+
jobs:
10+
lint-and-audit:
11+
name: Lint & Security Audit
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
17+
- name: Enable Corepack
18+
run: corepack enable
19+
20+
- name: Setup Node.js
21+
uses: actions/setup-node@v4
22+
with:
23+
node-version: 24
24+
cache: 'yarn'
25+
26+
- name: Install dependencies
27+
run: yarn install --immutable
28+
29+
- name: Run lint
30+
run: yarn run lint
31+
32+
- name: Run security audit
33+
run: yarn run audit

.github/workflows/lint.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
IMPORTANT: The first thing you ever do is to start the project `meteor-devtools-evolved` in the Serena MCP server

0 commit comments

Comments
 (0)