Skip to content

Feature/update angular #51

Feature/update angular

Feature/update angular #51

Workflow file for this run

name: guessy-ci
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.13.0
uses: actions/setup-node@v3
with:
node-version: 18.13.0
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Unit tests
run: npm run test
- name: Component tests
run: npm run ct:ci
- name: Build
run: npm run build:prod
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: './dist/guessy'
production-branch: main
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: 'Deploy from GitHub Actions'
enable-pull-request-comment: false
enable-commit-comment: true
overwrites-pull-request-comment: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1