fix relock, add SealedEpoch event #38
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: Test workflow | |
on: push | |
jobs: | |
lint: | |
name: Lint sources | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.16.1] | |
steps: | |
- name: Checkout | |
uses: 'actions/checkout@master' | |
- name: Set Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- name: Lint sources | |
run: npm run lint | |
unit_test: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.16.1] | |
steps: | |
- name: Checkout | |
uses: 'actions/checkout@master' | |
- name: Set Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Set environment | |
run: export NPM_CONFIG_PREFIX=~ | |
- name: Install dependencies | |
run: npm install --no-save | |
- name: Install Truffle | |
run: npm install --no-save [email protected] | |
- name: Run tests | |
run: npm run test |