Skip to content

docs: update banner after public release #8

docs: update banner after public release

docs: update banner after public release #8

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main]
pull_request:
branches: [main, develop]
jobs:
codebase:
name: Build and lint codebase
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build the app
run: yarn build
- name: Lint using ESLint
run: yarn lint