-
Notifications
You must be signed in to change notification settings - Fork 7
August 2026 maintenance #370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
8085922
Update to NodeJS 24
RichDom2185 bd1cafb
Fix incorrect license
RichDom2185 228f949
Upgrade to latest Yarn and fix GL version
RichDom2185 4663ff9
Update workflows
RichDom2185 b5fa45a
Update gitignore
RichDom2185 75ff0a3
Deduplicate dependencies
RichDom2185 26101a4
Fix tests
RichDom2185 e14800a
Add more tests
RichDom2185 0ea2dd2
Install Prettier and add package scripts
RichDom2185 ee7ef89
Add editor settings
RichDom2185 8b4d188
Reformat codebase with Prettier
RichDom2185 6abf965
Update scripts
RichDom2185 bc02c82
Add basic CI workflow
RichDom2185 8e8b083
Fix deprecations
RichDom2185 2a16a80
Potential fix for code scanning alert no. 7: Workflow does not contai…
RichDom2185 6328421
Fix formatting
RichDom2185 1572cd6
Remove old Yarn option
RichDom2185 da30a09
Remove old logic
RichDom2185 6733e7f
Fix Node version
RichDom2185 337d76c
Fix script
RichDom2185 15b1526
Merge remote-tracking branch 'origin/master' into richard/2601-mainte…
sayomaki 16acded
Update node version to latest
sayomaki 8e10e9e
Dedupe dependencies
sayomaki 6acbd93
Update tsconfig.json for TS7
sayomaki aab5eea
Fix js-slang imports
sayomaki 8fa8091
Fix formatting
sayomaki 53a6a59
Fix container not found for aws lambda
sayomaki 7c57d1e
Attempt to fix CI for build xvfb
sayomaki 97701cf
Another attempt to fix CI for building lambda
sayomaki 4a7c7de
Fix CI for tests as xvfb is missing from github actions
sayomaki bd03c4d
Fix script for building xvfb on lambda
sayomaki 3df0af7
Fix formatting for workflows
sayomaki 6c73f9c
Another attempt to fix xvfb build on lambda
sayomaki ef8809a
Add more mirrors to download xvfb build dependencies
sayomaki 412f1d0
Fix strip command for xvfb build script
sayomaki 9621563
Remove dev dependencies from build output
sayomaki 7543aaf
Bump actions to v7
sayomaki 08741b3
Bump delete-artifact to v6
sayomaki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: npm | ||
| directory: "/" | ||
| schedule: | ||
| interval: monthly | ||
| time: "07:00" | ||
| open-pull-requests-limit: 10 | ||
| - package-ecosystem: npm | ||
| directory: '/' | ||
| schedule: | ||
| interval: monthly | ||
| time: '07:00' | ||
| open-pull-requests-limit: 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,117 @@ | ||
| name: Run CI | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| pull_request: | ||
| branches: | ||
| - master | ||
|
|
||
| jobs: | ||
| format-check: | ||
| name: Check code formatting | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v7 | ||
| - name: Enable corepack | ||
| run: corepack enable | ||
| - name: Use Node.js | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: 24 | ||
| cache: yarn | ||
|
|
||
| - name: Install dependencies | ||
| run: yarn install --immutable | ||
|
|
||
| - name: Check formatting | ||
| run: yarn format:check | ||
|
|
||
| typecheck: | ||
| name: TypeScript type checking | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Enable corepack | ||
| run: corepack enable | ||
|
|
||
| - name: Use Node.js | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: 24 | ||
| cache: yarn | ||
|
|
||
| - name: Install dependencies | ||
| run: yarn install --immutable | ||
|
|
||
| - name: Run type checker | ||
| run: yarn typecheck | ||
|
|
||
| test: | ||
|
|
||
| name: Run tests | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Enable corepack | ||
| run: corepack enable | ||
|
|
||
| - name: Use Node.js | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: 24 | ||
| cache: yarn | ||
|
|
||
| - name: Install dependencies | ||
| run: yarn install --immutable | ||
|
|
||
| - name: Install Xvfb and software GL | ||
| run: | | ||
| sudo apt-get update | ||
| sudo apt-get install -y xvfb libgl1-mesa-dri | ||
|
|
||
| - name: Run tests | ||
| run: xvfb-run --auto-servernum --server-args="-screen 0 1024x768x24 -ac" yarn test | ||
| env: | ||
| LIBGL_ALWAYS_SOFTWARE: '1' | ||
|
|
||
| - name: Upload coverage to Coveralls | ||
| if: github.event_name == 'push' && github.ref == 'refs/heads/master' | ||
| uses: coverallsapp/github-action@v2 | ||
| with: | ||
| github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| build: | ||
|
|
||
| name: Build project | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Enable corepack | ||
| run: corepack enable | ||
|
|
||
| - name: Use Node.js | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: 24 | ||
| cache: yarn | ||
|
|
||
| - name: Install dependencies | ||
| run: yarn install --immutable | ||
|
|
||
| - name: Build TypeScript | ||
| run: yarn build | ||
|
|
||
| - name: Verify build output | ||
| run: | | ||
| test -f build/index.js || (echo "Build failed: index.js not found" && exit 1) | ||
| echo "Build successful!" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,3 +2,6 @@ node_modules/ | |
| *.map | ||
| build/ | ||
| grader.zip | ||
|
|
||
| # Yarn | ||
| .yarn/install-state.gz | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 22.14.0 | ||
| 24.19.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "recommendations": ["esbenp.prettier-vscode"] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "editor.formatOnSave": true, | ||
| "editor.defaultFormatter": "esbenp.prettier-vscode", | ||
| "files.insertFinalNewline": true | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| nodeLinker: node-modules |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.