Skip to content

chore(deps-dev): bump @angular-eslint/builder from 14.1.1 to 17.4.1 #1607

chore(deps-dev): bump @angular-eslint/builder from 14.1.1 to 17.4.1

chore(deps-dev): bump @angular-eslint/builder from 14.1.1 to 17.4.1 #1607

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: build pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build_library:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: Install global deps
run: |
npm install -g @angular/cli
- name: Install project dependencies
run: npm install
- name: Lint library project
run: ng lint --project strapi-auth
- name: Build library
run: npm run build_lib
build_showcase:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: Install global deps
run: |
npm install -g @angular/cli
- name: Install project dependencies
run: npm install
- name: Install strapi dependencies
run: cd backend && npm install
- name: Lint library showcase project
run: ng lint --project strapi-auth-example
- name: Build showcase
run: cd projects/strapi-auth-example && ng build --project strapi-auth-example
- name: Build strapi
run: cd backend && npm run build