Skip to content

Added Build.yaml and Lint.yaml files for pullrequest #2

Added Build.yaml and Lint.yaml files for pullrequest

Added Build.yaml and Lint.yaml files for pullrequest #2

Workflow file for this run

name: Build
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Change to project directory
run: cd nepalingo-web
- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm run build