Skip to content

Dev/cd workflow

Dev/cd workflow #1

Workflow file for this run

name: CI Workflow
on:
pull_request:
branches:
- main
- dev
types:
- opened
- synchronize
jobs:
Run_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: node v20.x setup
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install Dependencies
run: npm install
- name: Build project
run: npm run build