35 lines
511 B
YAML
Raw Normal View History

2022-12-01 12:44:48 -05:00
name: Lint
2022-12-01 12:42:32 -05:00
on:
push:
branches: [ "main" ]
paths:
2022-12-01 12:46:50 -05:00
- core/**
2022-12-01 12:42:32 -05:00
pull_request:
branches: [ "main" ]
paths:
2022-12-01 12:46:50 -05:00
- core/**
2022-12-01 12:42:32 -05:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2022-12-01 12:46:50 -05:00
- name: Setup Node
2022-12-01 12:42:32 -05:00
uses: actions/setup-node@v3
with:
2022-12-01 12:46:50 -05:00
cache: yarn
node-version: 16
2022-12-01 12:42:32 -05:00
2022-12-01 12:46:50 -05:00
- name: Install
working-directory: ./core
2022-12-01 12:42:32 -05:00
run: |
npm ci
- name: Lint
2022-12-01 12:46:50 -05:00
working-directory: ./core
2022-12-01 12:42:32 -05:00
run: |
npm run lint