From b16f780a2a2f4b93c340ca2d1d953b54fa5b7f8c Mon Sep 17 00:00:00 2001 From: Michael Buhler Date: Tue, 3 Dec 2024 21:25:07 +0700 Subject: [PATCH] wip: workflow testing --- .github/workflows/build.yaml | 14 ++++++++++++++ .vscode/settings.json | 5 +++++ 2 files changed, 19 insertions(+) create mode 100644 .github/workflows/build.yaml create mode 100644 .vscode/settings.json diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..0f701e0 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,14 @@ +name: Build and SCP + +on: + push: + branches: + - master + +jobs: + build-and-scp: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + - run: npm install diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..4e3d5fe --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.autoSave": "onFocusChange", + "editor.formatOnPaste": true, + "editor.formatOnSave": true +} \ No newline at end of file