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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
31 changes: 31 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Parser tests
on:
push:
workflow_dispatch:

jobs:
parser-tests:
runs-on: ubuntu-latest
container: node:20.12.0-alpine

steps:
- name: checkout
uses: actions/checkout@v3

- name: deps
run: yarn

- name: build
run: yarn build

- name: deparser
run: cd ./packages/deparser && yarn test

- name: enums
run: cd ./packages/enums && yarn test

- name: types
run: cd ./packages/types && yarn test

- name: transform
run: cd ./packages/transform && yarn test
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"workbench.colorTheme": "Default Dark Modern",
"workbench.startupEditor": "none"
}
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.PHONY: run-openhands

run-openhands:
@echo "Starting OpenHands with current directory: $(PWD)"
export SANDBOX_VOLUMES=$(PWD):/workspace:rw; \
docker run -it --rm --pull=always \
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.44-nikolaik \
-e SANDBOX_VOLUMES=$$SANDBOX_VOLUMES \
-e LOG_ALL_EVENTS=true \
-v /var/run/docker.sock:/var/run/docker.sock \
-v ~/.openhands:/.openhands \
-p 3000:3000 \
--add-host host.docker.internal:host-gateway \
--name openhands-app \
docker.all-hands.dev/all-hands-ai/openhands:0.44
69 changes: 69 additions & 0 deletions __fixtures__/output/enum-maps/disabled/enums.ts

Large diffs are not rendered by default.

Loading