Skip to content

feat: new descriptions #180

feat: new descriptions

feat: new descriptions #180

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Build
run: yarn build
# - name: Run Lint
# run: yarn lint