Skip to content

fix(one-zero): transaction identifier (#879) #1442

fix(one-zero): transaction identifier (#879)

fix(one-zero): transaction identifier (#879) #1442

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
if: github.ref != 'refs/heads/master'
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: browser-actions/setup-chrome@v1
- name: npm install and test
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: ${{ runner.os == 'macOS-latest' && 'true' || 'false' }}
run: |
npm ci
npm run test:ci