Skip to content

chore: update shiki to v4.1.0 [github-actions] #581

chore: update shiki to v4.1.0 [github-actions]

chore: update shiki to v4.1.0 [github-actions] #581

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node.js LTS
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.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@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
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 }}