Skip to content

Remove IE-Version-Switches #65

Remove IE-Version-Switches

Remove IE-Version-Switches #65

Workflow file for this run

# Workflow for checking prettier formatting
name: Check code formatting with Prettier
on:
# Runs for every pull-requests created
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run prettier
run: make format