Skip to content

Node CI

Node CI #93

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "16.x"
- name: npm install and build
run: |
npm ci
npm run build --if-present
env:
CI: true
- name: Test
run: |
node dist/index.js
meteor --version