Skip to content

ci: test action in workflow #4

ci: test action in workflow

ci: test action in workflow #4

Workflow file for this run

name: Continuous Deployment
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Test Local Action
id: test-action
uses: ./
with:
website: https://github.com/frameless/wcag-issues-action/
label-color: D93F0B
owner: frameless
repo: wcag-issues-action
input: wcag-em.json
create-labels: true
create-artifact: false
token: ${{ secrets.GH_ISSUES_TOKEN }}
- name: Print Output
id: output
run: echo "WCAG issues: ${{ steps.test-action.outputs.count }}"

Check failure on line 33 in .github/workflows/cd.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cd.yml

Invalid workflow file

You have an error in your yaml syntax on line 33
publish:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
automatic_release_tag: 'latest'
prerelease: true
title: 'Development Build'