first commit
This commit is contained in:
28
node_modules/@n8n/node-cli/dist/template/templates/shared/default/.github/workflows/ci.yml
generated
vendored
Normal file
28
node_modules/@n8n/node-cli/dist/template/templates/shared/default/.github/workflows/ci.yml
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '22'
|
||||
|
||||
- name: Install dependencies
|
||||
run: '{{packageManager.name}} {{packageManager.installCommand}}'
|
||||
|
||||
- name: Run lint
|
||||
run: '{{packageManager.name}} run lint'
|
||||
|
||||
- name: Run build
|
||||
run: '{{packageManager.name}} run build'
|
||||
51
node_modules/@n8n/node-cli/dist/template/templates/shared/default/.prettierrc.js
generated
vendored
Normal file
51
node_modules/@n8n/node-cli/dist/template/templates/shared/default/.prettierrc.js
generated
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
module.exports = {
|
||||
/**
|
||||
* https://prettier.io/docs/en/options.html#semicolons
|
||||
*/
|
||||
semi: true,
|
||||
|
||||
/**
|
||||
* https://prettier.io/docs/en/options.html#trailing-commas
|
||||
*/
|
||||
trailingComma: 'all',
|
||||
|
||||
/**
|
||||
* https://prettier.io/docs/en/options.html#bracket-spacing
|
||||
*/
|
||||
bracketSpacing: true,
|
||||
|
||||
/**
|
||||
* https://prettier.io/docs/en/options.html#tabs
|
||||
*/
|
||||
useTabs: true,
|
||||
|
||||
/**
|
||||
* https://prettier.io/docs/en/options.html#tab-width
|
||||
*/
|
||||
tabWidth: 2,
|
||||
|
||||
/**
|
||||
* https://prettier.io/docs/en/options.html#arrow-function-parentheses
|
||||
*/
|
||||
arrowParens: 'always',
|
||||
|
||||
/**
|
||||
* https://prettier.io/docs/en/options.html#quotes
|
||||
*/
|
||||
singleQuote: true,
|
||||
|
||||
/**
|
||||
* https://prettier.io/docs/en/options.html#quote-props
|
||||
*/
|
||||
quoteProps: 'as-needed',
|
||||
|
||||
/**
|
||||
* https://prettier.io/docs/en/options.html#end-of-line
|
||||
*/
|
||||
endOfLine: 'lf',
|
||||
|
||||
/**
|
||||
* https://prettier.io/docs/en/options.html#print-width
|
||||
*/
|
||||
printWidth: 100,
|
||||
};
|
||||
12
node_modules/@n8n/node-cli/dist/template/templates/shared/default/.vscode/launch.json
generated
vendored
Normal file
12
node_modules/@n8n/node-cli/dist/template/templates/shared/default/.vscode/launch.json
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Attach to running n8n",
|
||||
"processId": "${command:PickProcess}",
|
||||
"request": "attach",
|
||||
"skipFiles": ["<node_internals>/**"],
|
||||
"type": "node"
|
||||
}
|
||||
]
|
||||
}
|
||||
0
node_modules/@n8n/node-cli/dist/template/templates/shared/default/CHANGELOG.md
generated
vendored
Normal file
0
node_modules/@n8n/node-cli/dist/template/templates/shared/default/CHANGELOG.md
generated
vendored
Normal file
3
node_modules/@n8n/node-cli/dist/template/templates/shared/default/eslint.config.mjs
generated
vendored
Normal file
3
node_modules/@n8n/node-cli/dist/template/templates/shared/default/eslint.config.mjs
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
import { config } from '@n8n/node-cli/eslint';
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user