Update/leverager ldot status #392
Workflow file for this run
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
name: ci | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
cache: 'yarn' | |
- name: prepare | |
id: prepare | |
shell: bash | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" >> ~/.npmrc | |
git config user.name "GitHub Actions Build" | |
git config user.email "contact@starlay.finance" | |
- name: install | |
id: install | |
run: | | |
yarn install --frozen-lockfile | |
- id: lint | |
name: lint | |
run: | | |
yarn lint | |
- id: cover | |
name: cover | |
run: | | |
yarn cover | |
- id: build | |
name: build | |
run: | | |
yarn build | |
# https://github.com/lerna/lerna/issues/2788 --no-verify-access | |
# https://github.com/lerna/lerna/issues/1893 --preid ${{ github.sha }} | |
- id: prerelease | |
name: prerelease | |
if: | | |
github.event.pull_request.head.repo.full_name == github.repository && | |
!contains(github.head_ref, 'dependabot') && | |
github.ref != 'refs/heads/main' | |
run: | | |
yarn release:canary --yes --no-verify-access --dist-tag ${{ github.sha }} --preid ${{ github.sha }} | |
#- uses: actions/github-script@v4 | |
# if: | | |
# github.event.pull_request.head.repo.full_name == github.repository && | |
# !contains(github.head_ref, 'dependabot') && | |
# github.ref != 'refs/heads/main' | |
# with: | |
# script: | | |
# github.issues.createComment({ | |
# issue_number: context.issue.number, | |
# owner: context.repo.owner, | |
# repo: context.repo.repo, | |
# body: '🎉 Canary Release. You can install canary version via `npm install package@next`' | |
# }) | |
- id: release | |
name: release | |
if: | | |
github.ref == 'refs/heads/main' && | |
!contains(github.event.head_commit.message, 'chore(release)') | |
run: | | |
yarn release:check | |
yarn release:latest --yes --no-verify-access |