limit the target len to 150 bytes #138
This file contains 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: massa sc ci tests | |
on: [push] | |
jobs: | |
sc-tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./smart-contract | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
cache-dependency-path: ./smart-contract/package-lock.json | |
- name: Install | |
run: npm ci | |
- name: Format | |
run: npm run fmt:check | |
- name: Test | |
run: npm run test | |