Skip to content

Update README file with Webpack config for common web app error fix #58

Update README file with Webpack config for common web app error fix

Update README file with Webpack config for common web app error fix #58

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
env:
BLS_KEY: ${{ secrets.BLS_KEY }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: "actions/checkout@v4"
- name: Install nodejs 🔧
uses: "actions/setup-node@v3"
with:
node-version: 22.3.0
- name: Install dependencies
run: yarn install
- name: Test
run: yarn test
- name: Build
run: yarn build