Skip to content

Commit

Permalink
Fixed CodeQL workflow pipeline. Removed NodeJS CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Aug 20, 2023
1 parent 501d3a8 commit f7a5834
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 29 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ jobs:
- name: Install Dependencies
run: npm install

- name: Build Application (if applicable)
- name: Build Application
run: npm run pack

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: javascript, typescript

- name: Build CodeQL database
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
with:
query: "javascript-security-and-quality"
languages: javascript, typescript
Expand All @@ -47,6 +47,6 @@ jobs:
path: ${{github.workspace}}/codeql-db

- name: Publish CodeQL Annotations
uses: github/codeql-action/upload-sarif@v1
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{github.workspace}}/codeql-db/codeql-database/codeql.sarif
24 changes: 0 additions & 24 deletions .github/workflows/node_ci.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Yttria Programming Language

![NodeJS CI](https://github.com/nthnn/yttria-lang/actions/workflows/node_ci.yml/badge.svg) ![CodeQL](https://github.com/nthnn/yttria-lang/actions/workflows/codeql.yml/badge.svg)
![CodeQL](https://github.com/nthnn/yttria-lang/actions/workflows/codeql.yml/badge.svg)

Yttria is a versatile and powerful general-purpose programming language designed to provide a coherent blend of performance, expressiveness, and ease of use. Developed using TypeScript, Yttria leverages LLVM bindings to generate an Intermediate Representation (IR), which can be further compiled using GCC for optimal performance and for target architectures.

Expand Down

0 comments on commit f7a5834

Please sign in to comment.