n8n/.github/workflows/tests.yml
कारतोफ्फेलस्क्रिप्ट™ 4f875ffcea
fix(ci): Run test/lint workflow on all pull requests (#3939)
2022-08-25 10:39:52 +02:00

30 lines
599 B
YAML

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install -g npm@latest
npm install
npm run build --if-present
npm test
npm run lint
env:
CI: true