Skip to content

Update layout.tsx

Update layout.tsx #5

Workflow file for this run

name: ci
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Linting
run: yarn run lint
- name: Testing
run: yarn run test:ci
- name: Build
run: yarn run build