This repository has been archived on 2024-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
shockwave-bundler/.github/workflows/lint.yml
Rypi Development e71a1939ba Initial commit
2023-07-31 16:32:33 +00:00

30 lines
553 B
YAML

name: 'Linting code'
on:
push:
branches: [develop]
pull_request:
branches: [develop]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.0
- uses: actions/setup-node@v3.0.0
with:
node-version: 18.x
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Linting prettier
run: yarn lint:prettier
- name: Linting typescript
run: yarn lint:typescript
- name: Checking editorconfig
run: yarn lint:editorconfig