Skip to content

Dockerizes the application (#24) #20

Dockerizes the application (#24)

Dockerizes the application (#24) #20

name: Build and Test
on:
push:
branches:
- main
pull_request:
jobs:
build_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies, Build, and Test
run: |
npm ci
npm run build --if-present
npm test -- --watchAll=false
env:
CI: ""