Merge pull request #9 from fluentci-io/feat/flu-11-cli-login #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Do not edit this file directly. It is generated by https://deno.land/x/fluent_github_actions | |
name: Lint and Test | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Fluent CI | |
uses: fluentci-io/setup-fluentci@v1 | |
- name: Run Dagger Pipelines | |
run: | | |
deno install --import-map=https://deno.land/x/[email protected]/import_map.json -A -r -f https://deno.land/x/[email protected]/main.ts -n fluentci | |
fluentci run deno_pipeline fmt lint test | |
- name: Upload to Codecov | |
run: fluentci run codecov_pipeline | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |