fix: getSlotValue test when node code #142
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: Installation tests | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
max-parallel: 1 | |
matrix: | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
node-version: [16.x, 18.x, 20.x] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.platform }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm link sol2uml --only=production | |
- name: KoiosECDSA class | |
run: sol2uml class 0x2762e676a9f17c7de34fe4b124424837c7e18e1c -v | |
env: | |
NODE_URL: ${{ secrets.NODE_URL }} | |
- name: KoiosECDSA storage | |
run: sol2uml storage 0x2762e676a9f17c7de34fe4b124424837c7e18e1c -v | |
env: | |
NODE_URL: ${{ secrets.NODE_URL }} | |
- name: Resonate Fantom flatten | |
run: sol2uml flatten --network fantom 0x1a5c2ee3fb7fe4a2c2e42474a3657c71f6c775cf -v | |
env: | |
NODE_URL: ${{ secrets.NODE_URL }} | |
- name: Diff OUSD VaultCore upgrade | |
run: sol2uml diff 0x48Cf14DeA2f5dD31c57218877195913412D3278A 0x997c35A0bf8E21404aE4379841E0603C957138c3 -v | |
env: | |
NODE_URL: ${{ secrets.NODE_URL }} |