Skip to content

Initial Commit

Initial Commit #1

Workflow file for this run

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: bun
args: |
install
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run e2e tests
run: |
fluentci run --wasm playwright install
fluentci run --wasm playwright test
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}