mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
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.
20 lines
451 B
YAML
20 lines
451 B
YAML
name: Check code-style
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'npm-packages/meteor-installer/**'
|
|
pull_request:
|
|
paths:
|
|
- 'npm-packages/meteor-installer/**'
|
|
jobs:
|
|
check-code-style:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20.x
|
|
- run: npm ci
|
|
- name: Run ESLint@8
|
|
run: npx eslint@8 "./npm-packages/meteor-installer/**/*.js"
|