Skip to content

chore: split check-pr workflows for maci digital ocean #2

chore: split check-pr workflows for maci digital ocean

chore: split check-pr workflows for maci digital ocean #2

Workflow file for this run

name: Check Pull Request MACI
on:
pull_request:
branches:
- MACI
push:
branches:
- MACI_DO
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Tests
run: npm run test