Skip to content

Add support for Angular v18 #12

Add support for Angular v18

Add support for Angular v18 #12

Workflow file for this run

name: Test, Build and Publish a beta version
on:
push:
branches-ignore:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Install dependencies
env:
HUSKY_SKIP_INSTALL: true
run: npm ci
- name: Cypress run
uses: cypress-io/github-action@v6
with:
build: npm run build
start: npm start
component: true
- name: Lint, build and release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm run lint
npm run build:lib
npx semantic-release --debug