Bump @angular/core from 10.0.3 to 10.2.5 in /greenfield #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow for continuous integration | |
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
NODE_VERSION: '10.13' | |
directory: './greenfield' | |
bundle-path: './greenfield/dist' | |
code-coverage-path: './greenfield/coverage' | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: install packages | |
run: | |
npm ci | |
working-directory: ${{ env.directory }} | |
- name: build | |
run: npm run build -- --prod | |
working-directory: ${{ env.directory }} | |
- name: e2e test | |
run: npm run e2e | |
working-directory: ${{ env.directory }} | |
- name: unit tests | |
run: npm run test -- --no-watch --no-progress | |
working-directory: ${{ env.directory }} | |
- name: code coverage | |
run: npm run test -- --no-watch --code-coverage | |
working-directory: ${{ env.directory }} | |
- name: Archive bundle | |
uses: actions/upload-artifact@v2 | |
with: | |
name: bundle | |
path: ${{ env.bundle-path }} | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v2 | |
with: | |
name: code-coverage-report | |
path: ${{ env.code-coverage-path }} |