Skip to content

Improve config for codespaces (#71) #5

Improve config for codespaces (#71)

Improve config for codespaces (#71) #5

Workflow file for this run

name: validate
on:
# run on push but only for the main branch
push:
branches:
- main
# run for every pull request
pull_request: {}
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: 🧹 Check code formatting with Prettier
run: find . -name package.json -maxdepth 2 -type f -execdir npm run format:check ';'
- name: 👕 Lint Node.js code with ESLint
run: find . -name package.json -maxdepth 2 -type f -execdir npm run lint ';'