mirror of
https://github.com/XFox111/easylogon-web.git
synced 2026-07-02 19:52:45 +03:00
50 lines
871 B
YAML
50 lines
871 B
YAML
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:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
audit:
|
|
runs-on: ubuntu-latest
|
|
container: node:24
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- run: npm install
|
|
- run: npm audit
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: docker/build-push-action@v7
|
|
with:
|
|
context: .
|
|
tags: "easylogon-web:ci"
|