Skip to content

Commit

Permalink
chore: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
gagdiez committed Apr 11, 2024
1 parent 422cb35 commit 27dade7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-contract-rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- name: Install modules
run: npm install
- name: Create Contract TS
run: npm run start -- hello-near --frontend none --contract rs --tests rs
run: npm run start -- hello-near --frontend none --contract rs
- name: Run tests
run: cd hello-near && ./test.sh
run: cd hello-near && cargo test

4 changes: 2 additions & 2 deletions .github/workflows/test-contract-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- name: Install modules
run: npm install
- name: Create Contract TS
run: npm run start -- hello-near --frontend none --contract ts --tests ts
run: npm run start -- hello-near --frontend none --contract ts
- name: Run tests
run: cd hello-near && npm install && npm run test

2 changes: 1 addition & 1 deletion .github/workflows/test-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- name: Install modules
run: npm install
- name: Run tests
Expand Down

0 comments on commit 27dade7

Please sign in to comment.