add file tags, tabular variables, and observation into the item card information #2441
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: lint | |
on: | |
push: | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Create .npmrc | |
run: | | |
cp .npmrc.example .npmrc | |
sed -i -e 's/<YOUR_GITHUB_AUTH_TOKEN>/${{ secrets.GITHUB_TOKEN }}/g' .npmrc | |
sed -i -e 's/<YOUR_NPM_AUTH_TOKEN>/${{ secrets.NPM_AUTH_TOKEN }}/g' .npmrc | |
- name: Install Dependencies | |
run: npm install | |
- name: Build Dataverse UI Library | |
working-directory: packages/design-system | |
run: npm run build | |
- name: Type check | |
run: tsc --noEmit | |
- name: ESLint | |
run: npm run lint:eslint | |
- name: Stylelint | |
run: npm run lint:stylelint | |
- name: Prettier | |
run: npm run lint:prettier |