Skip to content

feat: upgrade for angular 18 #92

feat: upgrade for angular 18

feat: upgrade for angular 18 #92

name: Build, Test, and Deploy
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
node-version: 12.x
- name: Install
uses: bahmutov/npm-install@v1
with:
install-command: npm ci --legacy-peer-deps
- name: Build
run: |
npm run build --if-present
env:
CI: true
- name: Test
run: |
npm run ci --if-present
env:
CI: true
- name: Prepare and deploy
run: |
npm run deploy --if-present -- --name="Swimlane" --email="[email protected]"
if: ${{ github.ref == 'refs/heads/master' }}
env:
CI: true
GH_TOKEN: ${{ secrets.GH_TOKEN }}