diff --git a/.github/workflows/simple-workflow.yaml b/.github/workflows/simple-workflow.yaml new file mode 100644 index 00000000..0129c8cf --- /dev/null +++ b/.github/workflows/simple-workflow.yaml @@ -0,0 +1,18 @@ +name: Simple workflow +on: + push: + branches: + - fredkiss3/building-electron-with-todesktop + workflow_dispatch: + +jobs: + check-formatting: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.head_ref }} + - uses: actions/setup-node@v3 + with: + node-version: "20.x" + - run: echo "Hello there"