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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
HUSKY: 0

Expand All @@ -24,8 +28,8 @@ jobs:
- macos-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Fetch Sources
uses: actions/checkout@v4

- name: Enable Corepack
if: matrix.os == 'windows-latest'
Expand All @@ -36,7 +40,7 @@ jobs:
run: corepack enable

- name: Setup Node.js 22.x
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: 22.x
cache: "yarn"
Expand All @@ -47,7 +51,7 @@ jobs:
run: yarn install --immutable

- name: Build
run: yarn build
run: yarn run build

- name: Run Tests
run: yarn test
run: yarn run test
3 changes: 3 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4763,6 +4763,9 @@ __metadata:
typescript-eslint: "npm:^8.33.1"
peerDependencies:
"@ton/core": ">=0.61.0"
peerDependenciesMeta:
"@ton/core":
optional: false
bin:
tasm: ./dist/cli/assembler.js
tdisasm: ./dist/cli/disassembler.js
Expand Down
Loading