Skip to content

Update README.md

Update README.md #36

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-start:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install || yarn install
- name: Start application
run: npm start