Skip to content

Bump sha.js from 2.4.11 to 2.4.12 in /example/ethereum #47

Bump sha.js from 2.4.11 to 2.4.12 in /example/ethereum

Bump sha.js from 2.4.11 to 2.4.12 in /example/ethereum #47

Workflow file for this run

name: Build & Release
on: [push]
jobs:
test:
strategy:
matrix:
node: ["22.x"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run Build
run: npm run build
- name: Install playwright webkit
run: npx playwright install-deps webkit
- name: Run tests
run: npx playwright install && npm run test