-
Notifications
You must be signed in to change notification settings - Fork 96
44 lines (37 loc) · 985 Bytes
/
test-cli.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
40
41
42
43
44
name: Tests
on: pull_request
jobs:
preparation_and_running_tests:
permissions:
contents: read
strategy:
matrix:
os: [
ubuntu-latest,
windows-latest,
macos-latest
]
node-version: ['18.17.1'] # or 18.17.1
tags: [
"common.test.ts"
]
runs-on: ${{ matrix.os }}
name: 'Node ${{ matrix.node-version }} / ${{ matrix.os }}'
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: |
npm ci
npm i zksync-cli
- name: Run tests
env:
CI: true
E2E_TESTNET_PK: ${{ secrets.E2E_TESTNET_PK }}
run: |
npx jest --verbose --testPathPattern=${{ matrix.tags }}
shell: bash