mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
651d788ddb
* Revert "ci: fail the build if `package-lock.json` is out of sync (#4101)"
This reverts commit b2807cecb3
.
* Update package-lock.json
33 lines
619 B
YAML
33 lines
619 B
YAML
name: Test Master
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
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
|