Skip to content

converting the html files to json #2584

converting the html files to json

converting the html files to json #2584

Workflow file for this run

name: Continuous Integration
on:
push:
pull_request:
branches: [master]
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
# This is important to fetch the changes to the previous commit
fetch-depth: 0
- name: Check source code style with Prettier
uses: creyD/[email protected]
with:
prettier_options: --check \".\"
only_changed: True
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}