Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck committed Mar 10, 2024
1 parent 3bc9433 commit ddac369
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:
- name: Setup subject
run: yarn install --immutable
- name: build
run: yarn run build --source-map
run: yarn run build:gbtd
- name: build
run: yarn run build:bundle-dev
- name: artifact build result
# see https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v3
Expand Down
15 changes: 9 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
/.*.cache

/reports/
/CI_reports/
/bundles/
/CI_bundles/



# yarn stuff - for now, until setup is hardened
# see also: https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
/.pnp.*
/.yarn/
/.yarnrc.yml


# No bundles for now untils release process is clarified.
/bundles/


# Only used during production build.
/sources/buildtime-dependencies.json


/.*.cache

# Everything below here is from https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
# Logs
logs
Expand Down
8 changes: 7 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Then add SDKs for you preferred editor as described on https://yarnpkg.com/getti
Build bundle

```shell
yarn run build # options: --source-map --no-minify
yarn run build
```

## Testing
Expand All @@ -31,6 +31,12 @@ Set up the tests once, via:
yarn run setup-tests
```

Build with source-map for testing:

```shell
yarn run build:bundle-dev
```

Run to have a proper test suite pass:

```shell
Expand Down

0 comments on commit ddac369

Please sign in to comment.