diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e69de29..fbe8df6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -0,0 +1,24 @@ +name: ci +on: + push: + branches: + - main +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Setup Fluent CI CLI + uses: fluentci-io/setup-fluentci@v5 + with: + wasm: true + plugin: deno + args: | + run -A https://cli.pocketenv.io init -t tsirysndr/base-workspace + run -A https://cli.pocketenv.io up + run -A https://cli.pocketenv.io logs + run -A https://cli.pocketenv.io list + env: + GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Display Running Containers + run: docker ps