Skip to content

Add stakewise to non editable tags (#308) #544

Add stakewise to non editable tags (#308)

Add stakewise to non editable tags (#308) #544

Workflow file for this run

name: "Build and test"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn install
# Lint and format and prettier
- name: Lint
run: yarn lint
- name: Prettier
run: yarn pretty
# Build
- name: Build
run: yarn build
- name: Build webpack
run: yarn build:webpack
# Test
- name: Test
run: yarn test