Skip to content

Commit

Permalink
Merge pull request #9 from ZyriabDsgn/chore/cleanup-css
Browse files Browse the repository at this point in the history
Chore: cleanup css
  • Loading branch information
Arthur Wallendorff authored Nov 30, 2023
2 parents 9d15296 + 4aee6a5 commit 1abafd2
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 14 deletions.
5 changes: 0 additions & 5 deletions css/tui.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
@import "https://www.nerdfonts.com/assets/css/webfont.css";

@font-face {
font-display: swap;
font-family: 'Fira Mono';
Expand Down Expand Up @@ -48,7 +46,6 @@ body {
color: #c9d1d9;
}

/* Scrollbar */
*::-webkit-scrollbar {
width: 0.4em;
background-color: #0d1117;
Expand Down Expand Up @@ -227,7 +224,6 @@ pre {

.h-auto {
height: fit-content;
/* flex-grow: 1; */
}

.h-fill {
Expand Down Expand Up @@ -502,7 +498,6 @@ div.selected-frame > ::-webkit-scrollbar-thumb {
}

.footer-item {
/* justify-content: center; */
gap: 1rem;
}

Expand Down
39 changes: 30 additions & 9 deletions data/snippets/snippet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,34 @@ jobs:
deploy_lambda:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Auto Minify
uses: nizarmah/auto-minify@v2.1

- name: Auto committing minified files
uses: stefanzweifel/git-auto-commit-action@v4
- name: 'Checking out code'
uses: actions/checkout@v2
- name: 'Setting up Nodejs environment'
uses: actions/setup-node@v2
with:
node-version: '16'
- name: 'Configuring AWS Credentials'
uses: aws-actions/configure-aws-credentials@v1
with:
commit_message: "Github Action: Auto Minified JS and CSS files"
branch: ${{ github.ref }}
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1
- name: 'Installing dependencies'
env:
CI: true
run: npm ci
- name: 'Checking TS'
run: npm run check
- name: 'Linting code'
run: npm run lint
- name: 'Running tests'
env:
NAMESPACE: ${{ secrets.NAMESPACE }}
AES_KEY: ${{ secrets.AES_KEY }}
run: npm test
- name: 'Bundling files'
run: npx ncc build src/index.ts
- name: 'Zipping bundled file'
run: zip -j deploy.zip ./dist/*
- name: 'Deploying to AWS Lambda'
run: aws lambda update-function-code --function-name=buckaroo --zip-file=fileb://deploy.zip

0 comments on commit 1abafd2

Please sign in to comment.