Skip to content

Upgrade version angular 17 #22

Upgrade version angular 17

Upgrade version angular 17 #22

Workflow file for this run

name: ci
on:
pull_request:
paths-ignore:
- '.angular/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v1
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm ci and npm run build
run: |
npm i -g yarn
yarn install --immutable --immutable-cache --check-cache
yarn run build:lib