fix(deps): update dependency @textlint/markdown-to-ast to v14.4.0 (#316) #1141
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 | |
on: push | |
jobs: | |
test: | |
# https://github.com/bahmutov/cypress-workflows | |
uses: bahmutov/cypress-workflows/.github/workflows/split.yml@v1 | |
with: | |
n: 3 | |
command: npm test | |
test-collect: | |
runs-on: ubuntu-20.04 | |
steps: | |
# https://github.com/actions/checkout | |
- name: Check out source code 🛎 | |
uses: actions/checkout@v3 | |
with: | |
# check out all commits to get accurate created date | |
fetch-depth: 0 | |
- uses: bahmutov/npm-install@v1 | |
- name: Print fiddles 🖨️ | |
run: npm run demo:collect | |
env: | |
# we do not need to install Cypress to run this test | |
CYPRESS_INSTALL_BINARY: 0 | |
release: | |
needs: ['test', 'test-collect'] | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v3 | |
- name: Semantic Release 🚀 | |
uses: cycjimmy/semantic-release-action@v3 | |
if: github.ref == 'refs/heads/main' | |
with: | |
branch: main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |