bump(deps): update @birthdayresearch/sticky to ^0.8.5 #377
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: 'CI' | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'Check out the repo' | |
uses: 'actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744' # v3 | |
- name: 'Install Node.js' | |
uses: 'actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d' # v3 | |
- name: 'Build docker image' | |
run: 'npm run build:docker' | |
- name: 'Install the dependencies and compile smart contracts' | |
run: 'npm install && npm run compile' | |
- name: 'Test smart contracts' | |
run: 'npm run test' | |
- name: 'Integration test' | |
run: 'npm run test-i9n' |