Skip to content

Commit 1542dfa

Browse files
committed
Merge remote-tracking branch 'origin/main' into mg/test-refactor1
2 parents a48dd29 + 038f5ad commit 1542dfa

File tree

200 files changed

+14734
-11477
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

200 files changed

+14734
-11477
lines changed

.eslintrc.yml

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

.github/workflows/test-and-deploy.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
build-and-test:
77
runs-on: ubuntu-22.04
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
with:
1111
submodules: recursive
1212
- name: Use Node.js
13-
uses: actions/setup-node@v3
13+
uses: actions/setup-node@v4
1414
with:
1515
node-version: 18
1616
cache: npm
@@ -24,11 +24,11 @@ jobs:
2424
long-test:
2525
runs-on: ubuntu-22.04
2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
with:
2929
submodules: "recursive"
3030
- name: Use Node.js
31-
uses: actions/setup-node@v3
31+
uses: actions/setup-node@v4
3232
with:
3333
node-version: 18
3434
cache: npm
@@ -42,9 +42,9 @@ jobs:
4242
if: github.ref == 'refs/heads/main'
4343
runs-on: ubuntu-22.04
4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v4
4646
- name: Use Node.js
47-
uses: actions/setup-node@v3
47+
uses: actions/setup-node@v4
4848
with:
4949
node-version: 18
5050
cache: npm
@@ -53,9 +53,9 @@ jobs:
5353
make dist
5454
- uses: jakejarvis/s3-sync-action@master
5555
with:
56-
args: --acl public-read --cache-control max-age=30 --metadata-directive REPLACE
56+
args: --cache-control max-age=30 --metadata-directive REPLACE
5757
env:
58-
AWS_S3_BUCKET: bbc.godbolt.org
58+
AWS_S3_BUCKET: bbc.xania.org
5959
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
6060
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
61-
SOURCE_DIR: "out/dist"
61+
SOURCE_DIR: "dist"

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@
88
/perf.data
99
.eslintcache
1010
**/.DS_Store
11+
coverage
12+
/dist

.husky/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
_
2+
3+
coverage

.husky/pre-commit

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
4-
npx lint-staged
5-
npm run test:unit
1+
npm run pre-commit

.idea/.gitignore

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deployment.xml

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

.idea/misc.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/prettier.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Debug.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.jshintrc

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

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
out
1+
dist
22
tests/6502_65C02_functional_tests
33
tests/integration/dp111_6502Timing
44
package-lock.json

.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "chrome",
6+
"request": "launch",
7+
"name": "Debug a running dev server",
8+
"url": "http://localhost:8080?logFdcStateChanges&logFdcCommands&model=MasterADFS&disc=CodenameDroid-ADFS_E.adf",
9+
"webRoot": "${workspaceFolder}",
10+
"sourceMaps": true,
11+
"trace": true
12+
}
13+
]
14+
}

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"editor.defaultFormatter": "esbenp.prettier-vscode",
3+
"[javascript]": {
4+
"editor.defaultFormatter": "esbenp.prettier-vscode"
5+
}
6+
}

Dockerfile

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

Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,9 @@ HASH := $(shell git rev-parse HEAD)
2121
dist: npm
2222
npm run build
2323

24-
.PHONY: upload
25-
upload: dist
26-
aws s3 sync out/dist/ s3://bbc.godbolt.org/$(BRANCH) --cache-control max-age=30 --metadata-directive REPLACE
27-
2824
.PHONY: clean
2925
clean:
30-
@rm -rf out
26+
@rm -rf dist out
3127

3228
.PHONY: spotless
3329
spotless: clean

0 commit comments

Comments
 (0)