Skip to content

Commit eccc46c

Browse files
austinklinebjartek
andauthoredMay 28, 2024··
Crescendo (#30)
* use flow-contracts npm package for dependency management * cadence 1.0 updates * rework transform to handle element access being references --------- Co-authored-by: Bjarte Stien Karlsen <bjarte@bjartek.org>
1 parent c10ce02 commit eccc46c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+630
-25096
lines changed
 

‎.github/workflows/unit-tests.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,13 @@ jobs:
1616
uses: actions/setup-go@v4
1717
with:
1818
go-version: 1.20
19+
- name: Set up Node
20+
uses: actions/setup-node@v2
21+
with:
22+
node-version: ^18
23+
- name: Install Node Dependencies
24+
run: npm i
1925
- name: Install Flow CLI
20-
run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.5.0
26+
run: bash -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/feature/stable-cadence/install.sh)"
2127
- name: Run tests
22-
run: flow test --cover --covercode="contracts" test/*_test.cdc
28+
run: flow-c1 test --cover --covercode="contracts" test/*_test.cdc

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@
1818
.idea
1919
node_modules
2020
creds.*.json
21+
22+
coverage.*

0 commit comments

Comments
 (0)
Please sign in to comment.