Skip to content

v1.19

v1.19 #152

Workflow file for this run

name: codeql
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '36 7 * * 0'
jobs:
analyze:
name: analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'csharp', 'javascript' ]
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: initialize codeql
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: build
run: |
dotnet nuget add source https://nuget.pkg.github.com/Naninovel/index.json -n github --username ${{ secrets.GH_USER }} --password ${{ secrets.GH_TOKEN }} --store-password-in-clear-text
dotnet publish backend/Naninovel.Language.WASM/Naninovel.Language.WASM.csproj
npm ci
npm run build
- name: analyze
uses: github/codeql-action/analyze@v2