Files
meteor/.github/workflows/check-syntax.yml
Jan Dvorak 88bbd64159 Update node.js in CI to v20 where possible
Since Meteor 3 is going to be running on Node.js 20 instead of 18, I'm updating the CI machines to run on Node 20 as well.
2023-12-20 13:35:16 +01:00

16 lines
394 B
YAML

name: Check legacy syntax
on:
- push
- pull_request
jobs:
check-code-style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: cd scripts/admin/check-legacy-syntax && npm ci
- name: Check syntax
run: cd scripts/admin/check-legacy-syntax && node check-syntax.js