Skip to content

chore: release mini-shiki #670

chore: release mini-shiki

chore: release mini-shiki #670

Workflow file for this run

name: CI
on:
push: null
pull_request: null
workflow_run:
workflows: ['Update Shiki']
branches:
- main
types:
- completed
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
ci:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Setup Node.js LTS
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: lts/*
cache: yarn
- name: Install dependencies
run: yarn --immutable
- name: Build, Lint, and Test
run: |
yarn build
yarn lint
yarn test
- name: Codecov
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Run codacy-coverage-reporter
if: ${{ !github.event.pull_request.head.repo.fork }}
uses: codacy/codacy-coverage-reporter-action@89d6c85cfafaec52c72b6c5e8b2878d33104c699 # v1.3.0
continue-on-error: true
with:
api-token: ${{ secrets.CODACY_API_TOKEN }}