Skip to content

Update typescript-eslint monorepo to v8 (major) #3873

Update typescript-eslint monorepo to v8 (major)

Update typescript-eslint monorepo to v8 (major) #3873

Workflow file for this run

name: Angular GitHub CI/CD
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18.13.0'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:headless
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build project
run: npm run build:prod
- name: Deploy
if: success()
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist