Skip to content

chore: no longer execute prettier twice over all files #696

chore: no longer execute prettier twice over all files

chore: no longer execute prettier twice over all files #696

Workflow file for this run

# Copyright (C) 2022, TomTom (http://tomtom.com).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
name: Quality Checks
on:
pull_request:
permissions:
contents: read
issues: write
pull-requests: write
jobs:
commit-message:
name: Conventional Commits Compliance
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Commisery
uses: ./
with:
token: ${{ github.token }}
prettier:
name: Check for Coding Standards (Typescript)
runs-on: ubuntu-latest
steps:
- name: Check-out the repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
- name: Install dev dependencies
run: npm install --only=dev
- name: Run prettier
run: npm run lint