Skip to content

Commit

Permalink
Committing changes to Angular-Interview-Questions
Browse files Browse the repository at this point in the history
  • Loading branch information
PranamBhat committed Aug 14, 2021
0 parents commit 37a065f
Show file tree
Hide file tree
Showing 11 changed files with 4,608 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Advanced Usage

on: [push, pull_request]

env:
FILE_NAME: angular-interview-questions

jobs:
convert_via_pandoc:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2

- name: Create output directory
run: |
mkdir output # create output dir
- name: Create PDF
uses: docker://pandoc/latex:2.10
with:
args: --pdf-engine=xelatex --output=output/${{env.FILE_NAME}}.pdf README.md

- name: Create epub
uses: docker://pandoc/latex:2.10
with:
args: --output=output/${{env.FILE_NAME}}.epub README.md

- name: Upload
uses: actions/upload-artifact@master
with:
name: output
path: output
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.idea
4,575 changes: 4,575 additions & 0 deletions README.md

Large diffs are not rendered by default.

Binary file added images/architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/browser-module-error.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/createElement.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/customElement.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/language-completion.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/language-error.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/language-navigation.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/lifecycle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 37a065f

Please sign in to comment.