Skip to content

useI18n instead of I18nSingleton for vue components #102

useI18n instead of I18nSingleton for vue components

useI18n instead of I18nSingleton for vue components #102

Workflow file for this run

name: CodeQL
on: [push]
jobs:
analyze:
name: Analyze
runs-on: 'ubuntu-latest'
timeout-minutes: 360
permissions:
security-events: write
actions: read
contents: read
strategy:
fail-fast: false
matrix:
language: [ 'javascript-typescript' ]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Checkout Server Repository
uses: actions/checkout@v4
with:
repository: OlliL/moneyjinn-server
path: moneyjinn-server
- name: Install Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Build API
run: mvn -Dopenapi.inputSpec=moneyjinn-server/moneyjinn-server/src/main/resources/openapi.json compile
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm ci
- run: npm run build --if-present
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"