Skip to content

[feat] CI

[feat] CI #4

Workflow file for this run

name: Angular CI
on:
pull_request:
types: [ opened,ready_for_review,synchronize ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
- name: repository checkout
uses: actions/checkout@v3
- name: node.js setup
uses: actions/setup-node@v3
with:
node-version: ${{ matrix['node-version'] }}