Bump tar, @angular-devkit/build-angular, @angular/cli and ng-packagr #69
Workflow file for this run
This file contains hidden or 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
| name: image-viewer | |
| on: [push] | |
| jobs: | |
| build: | |
| # using Ubuntu | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [13.x, 14.x] | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: actions/setup-node@v1 #this installs node and npm for us | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - uses: actions/cache@v1 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - run: npm install | |
| - run: npm install -g @angular/cli | |
| - run: ng build charts --prod | |