mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
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@v4
|
|
- 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
|