1
0
mirror of https://github.com/XFox111/easylogon-web.git synced 2026-07-02 19:52:45 +03:00

chore(ci): split workflows jobs

This commit is contained in:
2025-09-02 20:10:10 +00:00
parent 59dfa061e0
commit 7b8f78064c
2 changed files with 51 additions and 30 deletions
+46
View File
@@ -0,0 +1,46 @@
name: Audit pipeline
on:
push:
paths-ignore:
- '.devcontainer/*'
- '.github/*'
- '!.github/workflows/audit.yml'
- '.vscode/*'
- '**.md'
- '.env*'
- 'LICENSE'
- 'COPYING'
- '.git*'
pull_request:
paths-ignore:
- '.devcontainer/*'
- '.github/*'
- '!.github/workflows/audit.yml'
- '.vscode/*'
- '**.md'
- '.env*'
- 'LICENSE'
- 'COPYING'
- '.git*'
workflow_dispatch:
jobs:
audit:
runs-on: ubuntu-latest
container: node:24
steps:
- uses: actions/checkout@v5
- run: yarn install
- run: yarn audit
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: docker/build-push-action@v6
with:
context: .
tags: "easylogon-web:ci"