Skip to content

Adding support for Angular 18 #21

Adding support for Angular 18

Adding support for Angular 18 #21

Workflow file for this run

name: Test and deploy the ng-terminal
on:
workflow_dispatch:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install and Test
run: |
npm ci
npm run lib:travis:test
- name: Create the github page
run: npm run page
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs/ # The folder the action should deploy.