Skip to content

fix: πŸ› convert style of citation in impact page #2535

fix: πŸ› convert style of citation in impact page

fix: πŸ› convert style of citation in impact page #2535

Workflow file for this run

name: Lint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: yarn install --pure-lockfile
# - name: Run ESLint
# uses: wearerequired/lint-action@v1
# with:
# eslint: true
- name: Run Prettier
uses: wearerequired/lint-action@v2
with:
prettier: true
prettier_extensions: 'css,html,js,json,jsx,md,sass,scss,ts,tsx,vue'
commit_message: 'style: 🎨 code style issues with ${linter}'
auto_fix: true
github_token: ${{ secrets.GITHUB_TOKEN }}
git_email: '[email protected]'
git_name: 'fairdataihub-bot'