Skip to content

chore(deps): bump postcss and sugarss (#91) #110

chore(deps): bump postcss and sugarss (#91)

chore(deps): bump postcss and sugarss (#91) #110

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: Angular CI Workflow
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install package
run: npm install
- name: Lint check
run: npm run lint ngx-pendo
- name: Building check
run: npm run build-pkg && npm run build-schematics
- name: Unit Test check
run: npm run test-schematics