translation of matTooltip in html files #1327
Workflow file for this run
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
name: build-run | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
name: Run Lint and Deploy | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 19 | |
uses: actions/setup-node@v1 | |
with: | |
# no support for lts as of now with github actions. | |
# issue link : https://github.com/actions/setup-node/issues/26 | |
# lts/gallium node v19.7.0 (npm v9.5.0) | |
node-version: '19.7.0' | |
- name: Angular CLI install | |
run : npm install -g --silent @angular/cli@14.2.12 | |
- name: Npm install | |
run: npm install | |
- name: Run tslint | |
run : npx tslint src/**/*.ts | |
- name: Run build | |
run : npm run build:prod | |
- name: Deploy to github pages | |
if: ${{ github.event_name == 'push' }} | |
uses: JamesIves/github-pages-deploy-action@3.7.1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: dist/web-app | |
#without preserve it only builds if you have untracked files | |
PRESERVE: true | |
# github user name and email shows up in the logs, | |
# so it would be better to make it silent. | |
SILENT: true |