-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (31 loc) · 1003 Bytes
/
node.js.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Build and Test
on:
pull_request:
jobs:
Deploy-Test:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' # This line ensures that this job only runs on pull requests
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18.15.0'
- name: Restore cache
id: restore-cache
uses: actions/cache/restore@v3
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install HardHat
if: steps.restore-cache.outputs.cache-hit != 'true'
run: npm i hardhat
- name: File Import
run: npx hardhat run ./scripts/fileImport.ts
- name: compile contracts
run: npx hardhat compile
- name: deploy simulation
run: npx hardhat run ./scripts/deploy.ts