Skip to content

#deploy

#deploy #21

Workflow file for this run

name: Build
on:
- push
jobs:
pipeline:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: '[BUILD] | Install Dependencies'
run: yarn install --frozen-lockfile
shell: bash
- name: '[BUILD] | Build'
run: yarn build
shell: bash
- name: '[TEST] | Lint Check'
run: yarn lint:check
shell: bash