Skip to content

Modified CI and env script #6

Modified CI and env script

Modified CI and env script #6

Workflow file for this run

name: Continuous Integration Action
on:
push:
branches:
- main
- production
pull_request:
branches:
- main
- production
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run build
run: npm run build