Skip to content

Merge pull request #14 from jop-software/13-astro-starlight-compatibi… #22

Merge pull request #14 from jop-software/13-astro-starlight-compatibi…

Merge pull request #14 from jop-software/13-astro-starlight-compatibi… #22

Workflow file for this run

name: "CI"
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
jobs:
lint:
name: "Linting"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v2
- name: "Setup NodeJS"
uses: actions/setup-node@v2
with:
node-version: "16"
- name: "Install dependencies"
run: "npm install"
- name: "Run prettier"
run: "npm run prettier:check"