Skip to content

Add article 'AI is hurting you at work' #323

Add article 'AI is hurting you at work'

Add article 'AI is hurting you at work' #323

Workflow file for this run

name: lint
on:
workflow_dispatch:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
prettier:
name: lint-prettier
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Prettify code
run: npx prettier . --check