Skip to content

updating actions

updating actions #747

Workflow file for this run

name: Linting/Formatting
# Run on the opening of a pull request and subsequent commits to it.
on: pull_request
jobs:
lint-and-check-format:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Set up Node ⬢
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies 🧱
run: npm install
- name: Lint scripts 🏗
run: npm run lint:js
- name: Lint styles 💅
run: npm run lint:style
- name: Check Prettier ✨
run: npm run lint:format