Skip to content

Migrate for Meteor 3.0 #86

Migrate for Meteor 3.0

Migrate for Meteor 3.0 #86

Workflow file for this run

# this CI script lints the packages code independent of running the tests
name: Code lint
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install Dependencies
run: |
npm install
- name: Run Lint
run: |
npm run tools:lint