mirror of
https://github.com/tlsnotary/tlsn-js.git
synced 2026-01-09 20:47:55 -05:00
62 lines
1.3 KiB
YAML
62 lines
1.3 KiB
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
|
|
env:
|
|
LOCAL-NOTARY: true
|
|
LOCAL-WS: false
|
|
HEADLESS: true
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
|
|
|
jobs:
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
notary-server:
|
|
image: ghcr.io/tlsnotary/tlsn/notary-server:v0.1.0-alpha.8
|
|
env:
|
|
NOTARY_SERVER__TLS__ENABLED: false
|
|
ports:
|
|
- 7047:7047
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install stable rust toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: wasm32-unknown-unknown
|
|
toolchain: nightly
|
|
|
|
- name: Use caching
|
|
uses: Swatinem/rust-cache@v2
|
|
|
|
- name: Install Chrome
|
|
uses: browser-actions/setup-chrome@v1
|
|
id: setup-chrome
|
|
with:
|
|
chrome-version: 121.0.6167.85
|
|
|
|
- name: Set CHROME_PATH environment variable
|
|
run: echo "CHROME_PATH=${{ steps.setup-chrome.outputs['chrome-path'] }}" >> $GITHUB_ENV
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 18
|
|
cache: 'npm'
|
|
|
|
- name: Install nightly tool-chain
|
|
run: rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Test
|
|
run: npm run test |