Skip to content

[NO TICKET] feat: adds docker files for deploy #24

[NO TICKET] feat: adds docker files for deploy

[NO TICKET] feat: adds docker files for deploy #24

name: Integration Workflow
on:
pull_request:
branches: [main, development]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install npm packages
run: |
npm ci
- name: Lint & Test
run: |
npm run lint
npm run ci:test