Skip to content

refactor: add warnings to output #7

refactor: add warnings to output

refactor: add warnings to output #7

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- main
- beta
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Setup Node
uses: actions/setup-node@v4.0.1
with:
node-version: 18
cache: yarn
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test