Skip to content

add yarn install and litn #5

add yarn install and litn

add yarn install and litn #5

Workflow file for this run

name: CI
# Only trigger this script when you push to the master branch
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
# Download our master branch
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- run: yarn install
- run: yarn lint
# Run our deployment command
- name: Deploying the static website to gh-pages
run: npm run deploy