Skip to content

feat!: add support for Angular v17 #285

feat!: add support for Angular v17

feat!: add support for Angular v17 #285

Workflow file for this run

name: Plugin Tests
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node-version: [10.13.0, '*']
exclude:
- os: macOS-latest
node-version: 10.13.0
- os: windows-latest
node-version: 10.13.0
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- run: npm ci
name: NPM Install
- name: Linting
run: npm run format:ci
if: "${{ matrix.node-version == '*' }}"
- name: Run tests
run: npm run test