Add date_created
Field to Entity and Display in Metadata Component
#1058
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: Frontend | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- translate/** | |
- .github/workflows/frontend.yml | |
pull_request: | |
branches: | |
- master | |
paths: | |
- translate/** | |
- .github/workflows/frontend.yml | |
workflow_dispatch: | |
jobs: | |
typescript: | |
name: TypeScript | |
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: Check TypeScript | |
run: npm run types -- --pretty | |
working-directory: translate | |
- name: build | |
run: npm run build | |
working-directory: translate | |
jest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Install globals | |
run: npm install --global npm@8 | |
- name: Install dependencies | |
run: npm ci | |
- name: Test | |
run: npm test --coverage | |
working-directory: translate | |
- uses: codecov/codecov-action@v3 | |
with: { flags: frontend } |