Skip to content

add test

add test #2

Workflow file for this run

name: Website
on: [push, pull_request]
permissions: read-all
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: yarn install
working-directory: website
- name: Build the project
run: yarn build
working-directory: website
- name: Run linting
run: yarn lint
working-directory: website