Skip to content

add github action to build and deploy the dev CD/service #81

add github action to build and deploy the dev CD/service

add github action to build and deploy the dev CD/service #81

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test