Skip to content

Feature/angular 19

Feature/angular 19 #30

Workflow file for this run

name: Lint and Build
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Lint and Test
run: npm run test && npm run lint
- name: Build
run: npm run build:ci