Skip to content

added ethDenver 2025 event #542

added ethDenver 2025 event

added ethDenver 2025 event #542

Workflow file for this run

name: Build Pull request
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["14", "16", "17"]
name: Node ${{ matrix.node }} sample
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install
- run: yarn build