add missing event to interface and class (#113) #414
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: integration-tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.15.0] | |
environment: [build] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: npm install | |
run: npm install | |
- name: Lint solution | |
run: npm run lint | |
- name: Build solution | |
run: npm run build | |
- name: Start ganache and test integration | |
run: npm run test-ci | |
env: | |
CI: true |