Skip to content

Commit

Permalink
chore: generate TOC
Browse files Browse the repository at this point in the history
  • Loading branch information
maticzav committed Jan 14, 2024
1 parent 269d98a commit 88c5546
Show file tree
Hide file tree
Showing 15 changed files with 35 additions and 71,083 deletions.
9 changes: 0 additions & 9 deletions .devcontainer/Dockerfile

This file was deleted.

40 changes: 13 additions & 27 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,18 @@
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "sniper",

"build": {
"dockerfile": "Dockerfile"
"name": "Node.js & TypeScript",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye",
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/node:1": {}
},

// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.defaultProfile.linux": "/bin/bash"
},

"extensions": [
"bradlc.vscode-tailwindcss",
"visualstudioexptteam.vscodeintellicode",
"esbenp.prettier-vscode",
"arcanis.vscode-zipfs",
"coenraads.bracket-pair-colorizer",
"ms-azuretools.vscode-docker",
"silvenon.mdx"
],

// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [],

// https://stackoverflow.com/questions/24319662/from-inside-of-a-docker-container-how-do-i-connect-to-the-localhost-of-the-mach
// "runArgs": ["--net=host"],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "yarn install"
"postCreateCommand": "pnpm i",
"customizations": {}
//
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
16 changes: 12 additions & 4 deletions .github/workflows/generate:toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,22 @@ jobs:

steps:
# Setup
- uses: actions/checkout@master
- uses: actions/setup-node@v1
- name: Checkout Main
uses: actions/checkout@v3

- uses: pnpm/action-setup@v2
with:
version: 8.6.6

- name: Setup Node Environment
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache: 'pnpm'

# Build
- run: yarn install --skip-builds
- name: Install Dependencies
run: pnpm i --frozen-lockfile

# Generate TOC
- name: Generate Table of Contents
Expand Down
29 changes: 0 additions & 29 deletions .github/workflows/migrate.yml

This file was deleted.

11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@ jobs:
uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install Server Dependencies
run: yarn install
cache: 'pnpm'

- name: Install Dependencies
run: pnpm i --frozen-lockfile

- name: Start Test Server
run: yarn workspace server start &
run: pnpm run --dir server start &

- name: Wait for Server to Start
run: |
sleep 5
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.13.0
v21.4.0
77 changes: 0 additions & 77 deletions .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

This file was deleted.

Loading

0 comments on commit 88c5546

Please sign in to comment.