Skip to content

Configure ci for lint #1

Configure ci for lint

Configure ci for lint #1

Workflow file for this run

name: Publish Package to npmjs
on:
push:
jobs:
vue-publish:

Check failure on line 7 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / Publish Package to npmjs

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yml (Line: 7, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: vue-lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: |
cd react
npm ci
npm run build
# Check if the version already exists on npm
- name: Check Version Existence
id: check_version
run: |
if npm show @canopassoftware/[email protected]; then
echo "Version already published. Skipping npm publish."
echo "::set-output name=skip_publish::true"
else
echo "::set-output name=skip_publish::false"
fi
# Publish only if the version check passed
- name: Publish to npm
if: steps.check_version.outputs.skip_publish != true
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
react-publish:
runs-on: ubuntu-latest
needs: react-lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: |
cd react
npm ci
npm run build
# Check if the version already exists on npm
- name: Check Version Existence
id: check_version
run: |
if npm show @canopassoftware/[email protected]; then
echo "Version already published. Skipping npm publish."
echo "::set-output name=skip_publish::true"
else
echo "::set-output name=skip_publish::false"
fi
# Publish only if the version check passed
- name: Publish to npm
if: steps.check_version.outputs.skip_publish != true
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}