Skip to content

Upgrade to Angular 15 #78

Upgrade to Angular 15

Upgrade to Angular 15 #78

Workflow file for this run

name: Build & Test
on:
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: bahmutov/npm-install@v1
- run: yarn build --configuration production
test-eslint:
name: Lint
needs:
- build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: bahmutov/npm-install@v1
- run: yarn lint
test-prettier:
name: Prettier
needs:
- build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: bahmutov/npm-install@v1
- run: yarn prettier