Skip to content

Commit 7e09281

Browse files
authored
Merge pull request #25 from launchql/fixes
Fixes
2 parents 14cce17 + 4e6e35d commit 7e09281

File tree

357 files changed

+108816
-545630
lines changed

Some content is hidden

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

357 files changed

+108816
-545630
lines changed

.github/workflows/run-tests.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Parser tests
2+
on:
3+
push:
4+
workflow_dispatch:
5+
6+
jobs:
7+
parser-tests:
8+
runs-on: ubuntu-latest
9+
container: node:20.12.0-alpine
10+
11+
steps:
12+
- name: checkout
13+
uses: actions/checkout@v3
14+
15+
- name: deps
16+
run: yarn
17+
18+
- name: build
19+
run: yarn build
20+
21+
- name: deparser
22+
run: cd ./packages/deparser && yarn test
23+
24+
- name: enums
25+
run: cd ./packages/enums && yarn test
26+
27+
- name: types
28+
run: cd ./packages/types && yarn test
29+
30+
- name: transform
31+
run: cd ./packages/transform && yarn test

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"workbench.colorTheme": "Default Dark Modern",
3+
"workbench.startupEditor": "none"
4+
}

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.PHONY: run-openhands
2+
3+
run-openhands:
4+
@echo "Starting OpenHands with current directory: $(PWD)"
5+
export SANDBOX_VOLUMES=$(PWD):/workspace:rw; \
6+
docker run -it --rm --pull=always \
7+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.44-nikolaik \
8+
-e SANDBOX_VOLUMES=$$SANDBOX_VOLUMES \
9+
-e LOG_ALL_EVENTS=true \
10+
-v /var/run/docker.sock:/var/run/docker.sock \
11+
-v ~/.openhands:/.openhands \
12+
-p 3000:3000 \
13+
--add-host host.docker.internal:host-gateway \
14+
--name openhands-app \
15+
docker.all-hands.dev/all-hands-ai/openhands:0.44

__fixtures__/output/enum-maps/disabled/enums.ts

Lines changed: 69 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)