Skip to content

Voting Period Changes #149

Voting Period Changes

Voting Period Changes #149

Workflow file for this run

name: Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v4
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: pnpm install --ignore-scripts
- name: Build all packages
run: pnpm build
- name: Run Build and Tests
run: pnpm run build-test
env:
CI: true