Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,9 @@ jobs:
- name: Install Dependencies
run: npm ci

- name: Install Editor API Module Dependencies
run: npm ci --prefix modules/editor-api

- name: Build Editor API Module
run: npm run build --prefix modules/editor-api

- name: Run ESLint
run: npm run lint

- name: Run typecheck for Editor API module
run: npm run type:check:api

test:
name: Test
runs-on: ubuntu-latest
Expand All @@ -73,9 +64,6 @@ jobs:
- name: Install Dependencies
run: npm ci

- name: Install Editor API Module Dependencies
run: npm ci --prefix modules/editor-api

- name: Run Editor Tests
run: npm test

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ dist
.npmrc
/.vscode
/.cursor
modules/editor-api/types
test/editor-api/dist
/test-results
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ RUN npm run build:css

# build js
COPY src ./src
COPY modules ./modules
COPY static ./static
COPY types.d.ts ./
COPY tsconfig.json ./
Expand Down
3 changes: 1 addition & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,7 @@ export default [
'**/dist/**',
'src/realtime/share.uncompressed.js', // added when serving
'src/wasm/**/*.js',
'modules/editor-api/test',
'modules/editor-api/types'
'test/editor-api'
]
}
];
Loading