Skip to content

Merge branch 'feature/138-file-table-sorting-ui' of https://github.co… #594

Merge branch 'feature/138-file-table-sorting-ui' of https://github.co…

Merge branch 'feature/138-file-table-sorting-ui' of https://github.co… #594

Workflow file for this run

name: lint
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 19
cache: 'npm'
- name: Create .npmrc
run: |
cp .npmrc.example .npmrc
sed -i -e 's/<YOUR_GITHUB_AUTH_TOKEN>/${{ secrets.GITHUB_TOKEN }}/g' .npmrc
- name: Install Dependencies
run: npm install
- name: Build Dataverse UI Library
working-directory: packages/design-system
run: npm run build
- name: Lint
run: npm run lint