mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
16 lines
395 B
YAML
16 lines
395 B
YAML
name: Check legacy syntax
|
|
on:
|
|
- push
|
|
- pull_request
|
|
jobs:
|
|
check-code-style:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18.x
|
|
- run: cd scripts/admin/check-legacy-syntax && npm ci
|
|
- name: Check syntax
|
|
run: cd scripts/admin/check-legacy-syntax && node check-syntax.js
|