Skip to content

Add method that checks for valid data before pushing #5

Add method that checks for valid data before pushing

Add method that checks for valid data before pushing #5

name: NPM meteor-babel
on:
push:
paths:
- "npm-packages/meteor-babel/**"
pull_request:
paths:
- "npm-packages/meteor-babel/**"
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: npm-packages/meteor-babel
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run test