Skip to content

Update Node.js version to 20.x in main.yml #3

Update Node.js version to 20.x in main.yml

Update Node.js version to 20.x in main.yml #3

Workflow file for this run

name: CI/CD Pipeline on Github Actions
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: "20.x"
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test