Skip to content

Commit

Permalink
feat: add workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
Majorfi committed Oct 22, 2024
1 parent 6cf6ea1 commit 212746e
Show file tree
Hide file tree
Showing 27 changed files with 1,502 additions and 497 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = tab
indent_size = 4
max_line_length = 120
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Verify Tokens and Vaults

on:
push:
branches:
- main # Adjust this if you want to run on different branches

jobs:
verify:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install dependencies
run: bun install

- name: Verify Tokens
run: bun run scripts/verify-tokens.js

- name: Verify Vaults
run: bun run scripts/verify-vaults.js
12 changes: 10 additions & 2 deletions .prettierrc
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
{
"tabWidth": 2,
"printWidth": 80
"singleQuote": true,
"semi": true,
"useTabs": true,
"tabWidth": 4,
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "avoid",
"bracketSameLine": true,
"singleAttributePerLine": true,
"printWidth": 120
}
Loading

0 comments on commit 212746e

Please sign in to comment.