Skip to content

Alex b/fhevm v0.8.0 (#8) #7

Alex b/fhevm v0.8.0 (#8)

Alex b/fhevm v0.8.0 (#8) #7

Workflow file for this run

name: Main
on:
push:
branches:
- main
permissions:
contents: read
jobs:
build-and-test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: "false"
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22.x
- uses: foundry-rs/foundry-toolchain@82dee4ba654bd2146511f85f0d013af94670c4de # v1.4.0
with:
version: stable
- run: npm ci
- run: npm run compile
- run: npm run build:ts
- run: npm test
- run: npm run coverage
build-and-test-unix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: "false"
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22.x
- uses: foundry-rs/foundry-toolchain@82dee4ba654bd2146511f85f0d013af94670c4de # v1.4.0
with:
version: stable
- run: npm ci
- run: npm run prettier:check
- run: npm run lint
- run: npm run compile
- run: npm run build:ts
- run: npm test
- run: npm run coverage