Skip to content

Commit

Permalink
Returned to NodeJS CI, as there are no test files yet.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Aug 20, 2023
1 parent a6aed77 commit 00d8298
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 58 deletions.
57 changes: 0 additions & 57 deletions .github/workflows/codeql.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/node_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: NodeJS/CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
analyze:
name: Code CI workflow pipeline
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup NodeJS
uses: actions/setup-node@v2
with:
node-version: 20

- name: Install Dependencies
run: npm install

- name: Build Application
run: npm run pack
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

![CodeQL](https://github.com/nthnn/yttria-lang/actions/workflows/codeql.yml/badge.svg)
![NodeJS/CI](https://github.com/nthnn/yttria-lang/actions/workflows/node_ci.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 00d8298

Please sign in to comment.