Skip to content

chore(deps): bump postcss and @angular-devkit/build-angular #48

chore(deps): bump postcss and @angular-devkit/build-angular

chore(deps): bump postcss and @angular-devkit/build-angular #48

Workflow file for this run

name: Build
on:
push:
branches: [master]
paths:
- 'src/**/*'
- 'projects/**/*'
- '.github/workflows/build.yml'
pull_request:
branches: [master]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Install Dependencies
run: npm i --force
- name: build-lib
run: npm run build
- name: release
if: github.ref == 'refs/heads/master'
run: npm run semantic-release || true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}