Skip to content

bduhbya is building the project #57

bduhbya is building the project

bduhbya is building the project #57

name: push_build
run-name: ${{ github.actor }} is building the project
on: [push]
jobs:
build_project:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: npm install
- name: Run lint
run: npm run lint
- name: Run unit tests
run: npm test
- name: Build project
run: npx next build