Skip to content

Initial medusa support for the CI #88

Initial medusa support for the CI

Initial medusa support for the CI #88

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
hlint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Run formatter
run: npm run format
- name: Run linter
run: npm run lint