Skip to content

Commit

Permalink
refactor: Fetch secrets from Google Secret Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
koistya committed Oct 22, 2023
1 parent 1fa9cd0 commit bf69788
Show file tree
Hide file tree
Showing 48 changed files with 18,096 additions and 7,528 deletions.
44 changes: 0 additions & 44 deletions .eslintrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# These are supported funding model platforms

patreon: koistya
github: koistya
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI/CD

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v3
with: { node-version: 18, cache: "yarn" }
- run: yarn install
- run: yarn prettier --check .
- run: yarn lint
- run: yarn test
17 changes: 0 additions & 17 deletions .github/workflows/pull_request.yml

This file was deleted.

15 changes: 8 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
# Yarn package manager
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
.pnp.*
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Compiled output
/lib

# Testing
/env
# NPM
/node_modules
/package.tgz

# Misc
.DS_Store
.DS_Store
.env
.env.*
env.ts
7 changes: 7 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.vscode/
.yarn/
.prettierignore
test.js
.env
.env.*
env.ts

0 comments on commit bf69788

Please sign in to comment.