Skip to content

feat: user end date #58

feat: user end date

feat: user end date #58

Workflow file for this run

name: Build
on:
pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1 #this installs node and npm for us
with:
node-version: '10.x'
- uses: actions/cache@v1 # this allows for re-using node_modules caching, making builds a bit faster.
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install #TODO: --only-prod, le build crash à voir pq
- run: npm install -g @angular/cli > /dev/null
- run: npm run build:prod