Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Build
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: mskelton/setup-yarn@v1
- run: yarn test
release:
needs: build

Check failure on line 10 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 10, Col: 12): Job 'release' depends on unknown job 'build'.
runs-on: ubuntu-latest
steps:
- uses: mskelton/setup-yarn@v1
- name: Release
run: yarn semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}