Skip to content

feat(notification-system): implemented a basic level notification cha… #9

feat(notification-system): implemented a basic level notification cha…

feat(notification-system): implemented a basic level notification cha… #9

Workflow file for this run

name: UI CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-22.04
name: Lint
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: yarn
- run: yarn lint
build:
runs-on: ubuntu-22.04
needs: lint
name: Build
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: yarn
- run: yarn build
test:
runs-on: ubuntu-22.04
needs: build
name: Test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: yarn
- run: yarn test