Skip to content
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

JSON Schema for Tact configuration #194

Merged
merged 22 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/tact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
node-version: [18.x]
os: [ubuntu-latest, windows-latest, macos-latest]
novusnota marked this conversation as resolved.
Show resolved Hide resolved

runs-on: ${{ matrix.os }}

steps:
Expand All @@ -36,10 +36,11 @@ jobs:
yarn gen
yarn build
yarn coverage

- name: Check there are no errors reported by ESLint
run: |
yarn lint
yarn test:format
novusnota marked this conversation as resolved.
Show resolved Hide resolved

- name: Compare Tact version from CLI flag `--version` against package.json
if: runner.os != 'Windows'
Expand All @@ -61,7 +62,7 @@ jobs:
yarn build
yarn test
yarn tact --version

- name: Test compatibility with Blueprint
run: |
yarn create ton -- test-project --type tact-counter --contractName Counter
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"gen": "yarn gen:grammar && yarn gen:pack && yarn gen:compiler",
"clean": "rm -fr dist",
"build": "tsc && cp ./src/grammar/grammar.ohm* ./dist/grammar/ && cp ./src/func/funcfiftlib.* ./dist/func",
"test": "jest",
"test": "jest --testMatch=\"**/*.spec.ts\"",
"test:format": "jest --testMatch=\"**/*.format-spec.ts\"",
"coverage": "cross-env COVERAGE=true jest",
"release": "yarn clean && yarn build && yarn coverage && yarn release-it --npm.yarn1",
"lint": "yarn eslint ."
Expand Down
novusnota marked this conversation as resolved.
Show resolved Hide resolved
File renamed without changes.
novusnota marked this conversation as resolved.
Show resolved Hide resolved
File renamed without changes.