Skip to content

Merge pull request #8 from fluent-ci-templates/feat/wasm-plugin #71

Merge pull request #8 from fluent-ci-templates/feat/wasm-plugin

Merge pull request #8 from fluent-ci-templates/feat/wasm-plugin #71

Workflow file for this run

# Do not edit this file directly. It is generated by https://deno.land/x/fluent_github_actions
name: Zenith Example
on:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Dagger Zenith
run: |
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.10.0 sh
sudo mv bin/dagger /usr/local/bin
dagger version
- name: Run Dagger Pipelines
run: |
dagger call test --src .
dagger call build --src . --compile --outfile example --entrypoints index.ts
dagger call build --src . --outfile index.js --entrypoints index.ts
working-directory: example
env:
DAGGER_CLOUD_TOKEN: ${{ secrets.DAGGER_CLOUD_TOKEN }}