Skip to content

test: add docker run #80

test: add docker run

test: add docker run #80

Workflow file for this run

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', '20.11.0'] # or 18.17.1
tags: [
"common.test.ts"
]
runs-on: ${{ matrix.os }}
if: ${{ runner.os }} == 'Linux'

Check failure on line 23 in .github/workflows/test-cli.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/test-cli.yml (Line: 23, Col: 9): Unrecognized named-value: 'runner'. Located at position 1 within expression: runner.os
services:
docker:
image: docker:latest
name: 'Node ${{ matrix.node-version }} / ${{ matrix.os }}'
steps:
- uses: actions/checkout@v4
- name: Install Docker (Windows)
if: matrix.os == 'windows-latest'
run: |
choco install docker-desktop -y
docker --version
# - if: runner.os == 'macOS'
# run: |
# brew install --cask docker
# docker --version
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
# Second 'npm i' call is required to avoid CI issue with wrong build package version detection
- name: Install dependencies and build
run: |
npm ci && npm run build && npm i -g .
echo "zksync-cli version: " && npx zksync-cli --version
- name: Run tests
env:
CI: true
E2E_TESTNET_PK: ${{ secrets.E2E_TESTNET_PK }}
run: |
npx jest --verbose --testPathPattern=${{ matrix.tags }}
shell: bash