Skip to content

Merge pull request #9 from salman-ibrahim/workflow-update #38

Merge pull request #9 from salman-ibrahim/workflow-update

Merge pull request #9 from salman-ibrahim/workflow-update #38

Workflow file for this run

name: Build 👷🏻‍♂️
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
VITE_GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Build app
run: npm run build