Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix path names in workflows #6

Merged
merged 8 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 110 additions & 0 deletions .dictionary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
2xx
APIs
Autowiring
Benchmarking
Björn
Büttner
CLI
Codacy
Destructuring
DockerHub
Dockerfiles
ENV
Fastify
vue
Gitea
Gitlab
HAR
Idrinth's
airtimeux.com
JSON
Javascript
Jira
LinkedIn
MSSQL
Matomo
Microservice
Middleware
Middlewares
Mindmap
NPMJS
Node.js
OpenApi
OpenSauced
PascalCase
Postgres
README
Reddit
Roadmap
SHA
Web-UI
XML
XRAY_CLIENT_ID
XRAY_CLIENT_SECRET
XRAY_ENDPOINT
XRAY_PASSWORD
XRAY_TEST_PLAN_KEY
XRAY_USER_NAME
XRay
aBc
api-bench
api-bench-cli
api-bench-gitea-action
api-bench-gitlab-runner
api-bench-history-microservice
api-bench-history-website
api-bench-runner
api-benchmark
autowire
autowired
benchmarking
bugfixes
bvanderlaan
camelCase
ci-images
coai
codecheck
csrf-header
data.yml
deprecations
dockerfiles
eslint
faq
gitea
gitlab
gitlab-runner
history-microservice
iab
idrinth
idrinth-api-bench
jeffbski
json
jungwild
macOS
markmap
matteofigus
microservice
microservices
middleware
middlewares
mindmap
mono-repo
npm
ns
package.json
pino
pre
programmatically
readme
rest-APIs
sexualised
src
subprojects
tracking.bjoern-buettner.me
marikadeveloper marked this conversation as resolved.
Show resolved Hide resolved
ui
UI
[email protected]
winston
www.contributor-covenant.org
www.youtube-nocookie.com
xml
48 changes: 48 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: CodeQL
on:
push:
branches:
- the-one
paths:
- '**.ts'
- '**.js'
- '**.cjs'
- 'package-lock.json'
- '.github/workflows/codeql.yml'
pull_request:
branches:
- the-one
paths:
- '**.ts'
- '**.js'
- '**.cjs'
- 'package-lock.json'
- '.github/workflows/codeql.yml'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
timeout-minutes: 360
permissions:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: javascript-typescript
queries: security-and-quality
- name: Setup Node.js environment ${{ env.CURRENT_NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: latest
cache: 'npm'
cache-dependency-path: |
package-lock.json
- run: npm ci
- run: npm run language
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:javascript-typescript"
22 changes: 22 additions & 0 deletions .github/workflows/commit-message.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Commit Message Lint
on:
push:
branches:
- the-one
pull_request:
branches:
- the-one
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: latest
cache: 'npm'
cache-dependency-path: |
package-lock.json
- run: npm ci
- run: npm run commitlint-ci
35 changes: 35 additions & 0 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: framework ESLINT
on:
push:
branches:
- the-one
paths:
- '**.ts'
- '**.js'
- '**.cjs'
- '**.json'
- '.github/workflows/eslint.yml'
pull_request:
branches:
- the-one
paths:
- '**.ts'
- '**.js'
- '**.cjs'
- '**.json'
- '.github/workflows/eslint.yml'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: latest
cache: 'npm'
cache-dependency-path: |
package-lock.json
- run: npm ci
- run: npm run language
- run: npm run lint
58 changes: 0 additions & 58 deletions .github/workflows/framework.codeql.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/framework.eslint.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/framework.fta.yml

This file was deleted.

Loading
Loading