diff options
| author | Max Isom <[email protected]> | 2022-08-04 22:06:54 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-08-04 22:06:54 -0500 |
| commit | 89bd6206af3e49ca119656c97c1fa19635120c08 (patch) | |
| tree | 424d8a8e9870fc59b84483bb435a4ae1b9a8b3fc /.github/workflows/lint.yml | |
| parent | fd3fd32e7675aded4d334b6287d84e97568b4e4b (diff) | |
| download | muse-89bd6206af3e49ca119656c97c1fa19635120c08.tar.xz muse-89bd6206af3e49ca119656c97c1fa19635120c08.zip | |
Bump dependencies & fix bot status (#753)
Diffstat (limited to '.github/workflows/lint.yml')
| -rw-r--r-- | .github/workflows/lint.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..1ce6166 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,20 @@ +name: Lint + +on: [push, pull_request] + +jobs: + build: + name: Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-node@v2 + with: + node-version: '16' + cache: 'yarn' + - name: Install dependencies + run: yarn install + - name: Generate Prisma client + run: yarn prisma generate + - name: Run lint + run: yarn lint |
