chore(deps-dev): bump ton/core from 0.60.1 to 0.61.0, ton/sandbox from 0.27.0 to 0.33.0 #99
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [22] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| # - name: Install Soufflé on Ubuntu | |
| # if: matrix.os == 'ubuntu-latest' | |
| # run: | | |
| # sudo wget https://souffle-lang.github.io/ppa/souffle-key.public -O /usr/share/keyrings/souffle-archive-keyring.gpg | |
| # echo "deb [signed-by=/usr/share/keyrings/souffle-archive-keyring.gpg] https://souffle-lang.github.io/ppa/ubuntu/ stable main" | sudo tee /etc/apt/sources.list.d/souffle.list | |
| # sudo apt update | |
| # sudo apt install souffle | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Run Lint | |
| run: yarn lint | |
| - name: Build | |
| run: yarn build | |
| - name: Run Misti | |
| run: yarn misti --min-severity medium ./tact.config.json | |
| - name: Run tests | |
| run: yarn test |