Skip to content

Add date_created Field to Entity and Display in Metadata Component #1114

Add date_created Field to Entity and Display in Metadata Component

Add date_created Field to Entity and Display in Metadata Component #1114

Workflow file for this run

name: JavaScript linting
on:
push:
branches:
- master
paths:
- '**.js'
- '**.ts'
- '**.tsx'
- '**.css'
- package.json
- '.*eslint*'
- '.*prettier*'
- .github/workflows/js-lint.yml
pull_request:
branches:
- master
paths:
- '**.js'
- '**.ts'
- '**.tsx'
- '**.css'
- package.json
- '.*eslint*'
- '.*prettier*'
- .github/workflows/js-lint.yml
workflow_dispatch:
jobs:
eslint:
name: eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with: { node-version: '16' }
- name: Install dependencies
run: npm ci
- name: eslint
run: npm run eslint
prettier:
name: prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with: { node-version: '16' }
- name: Install dependencies
run: npm ci
- name: prettier
run: npm run check-prettier