Delete lint.yml

This commit is contained in:
Daniel Lautzenheiser 2022-12-01 13:43:42 -05:00 committed by GitHub
parent 0994288424
commit 50c8b46e22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,36 +0,0 @@
name: Lint
on:
workflow_dispatch:
push:
branches: [ "main" ]
paths:
- core/**
pull_request:
branches: [ "main" ]
paths:
- core/**
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: yarn
cache-dependency-path: core/yarn.lock
node-version: 16
- name: Install
working-directory: ./core
run: |
yarn install --frozen-lockfile
- name: Lint
working-directory: ./core
run: |
yarn lint