Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@factorialco/gat
Advanced tools
The gat
project is a tool to write your GitHub Actions workflows using TypeScript.
Maintaining YAML files is hard and if your project is big enough you will find yourself duplicating a lot of code between your workflows. With gat
you can create reusable jobs and steps just using TypeScript objects and importing them in your workflow templates.
Why gat
? The name is an acronym of "GitHub Actions Template Generator" without the last part because gat
means "cat" in Catalan.
Install the main package and its dependencies using the following command:
npm i -D @factorialco/gat typescript tsx commander @swc/core
The gat
CLI assumes that you have a index.ts
file inside .github/templates
. Let's create our first template:
// .github/templates/index.ts
import { Workflow } from "@factorialco/gat";
new Workflow("My first workflow")
.on("push")
.addJob("test", {
steps: [
{
uses: "actions/checkout@v3",
},
{
uses: "actions/setup-node@v3",
},
{
run: "npm test",
},
],
})
.compile("my-first-workflow.yml");
Notice that you need to call the compile()
method at the end, passing the file name of the generated Github Actions workflow.
You can build your templates running this command in your root folder:
npx gat build
Following the previous example, you should see now a file .github/workflows/my-first-workflow.yml
like this:
# Workflow automatically generated by gat
# DO NOT CHANGE THIS FILE MANUALLY
name: My first workflow
on:
push: null
jobs:
test:
runs-on: ubuntu-22.04
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm test
Notice that the job includes a few assumptions like the runs-on
and timeout-minutes
fields. You can change those when adding a new job.
TODO
TODO
MIT
FAQs
Write your GitHub Actions workflows using TypeScript
The npm package @factorialco/gat receives a total of 244 weekly downloads. As such, @factorialco/gat popularity was classified as not popular.
We found that @factorialco/gat demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.