Skip to content

feat: add ability to react to action/function permissions #2110

feat: add ability to react to action/function permissions

feat: add ability to react to action/function permissions #2110

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- develop
push:
branches:
- develop
tags:
- v*
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: npm
- name: Install Dependencies
run: npm ci
- name: Svelte Sync
run: npm run sync
- name: Count Lines of Code
run: npm run cloc
- name: Prettier
run: npm run format:check
- name: ESLint
run: npm run lint
- name: Stylelint
run: npm run lint:css
- name: Svelte Check
run: npm run check