Skip to content

Master >> Production #2

Master >> Production

Master >> Production #2

Workflow file for this run

name: checks
on:
push:
branches:
- main
- release-v*
- feature/*
pull_request: {}
workflow_dispatch: {}
concurrency:
group: checks-${{ github.ref }}
cancel-in-progress: true
jobs:
Linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up environment
uses: ./.github/actions/setup
- name: Run linters
uses: wearerequired/lint-action@v2
with:
eslint: true
prettier: true