[Common] fix Mixbytes audits reports #113
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: Autotests Periphery | |
on: | |
push: | |
branches: | |
- master | |
- staged | |
pull_request: | |
branches: | |
- master | |
jobs: | |
Autotests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./src/periphery | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
cache-dependency-path: package-lock.json | |
- run: npm run bootstrap | |
working-directory: ./ | |
- run: npm run compile | |
- run: npm run test |