fix: release a new latest version #1660
This file contains hidden or 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 | |
- pull_request | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
name: Lint and Test with Node.js ${{ matrix.node }} on ${{ matrix.os }} | |
strategy: | |
matrix: | |
bun: | |
- latest | |
node: | |
- 18 | |
- 18.18 | |
- 20 | |
- 22 | |
- 23 | |
- 24 | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Node.js ${{ matrix.node }} | |
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: yarn | |
- name: Setup Bun ${{ matrix.bun }} | |
uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2.0.2 | |
with: | |
bun-version: ${{ matrix.bun }} | |
- name: Install Dependencies | |
run: | | |
yarn --immutable | |
cd test/fixtures/yarn-pnp | |
yarn --immutable | |
cd ../bun | |
bun i --frozen-lockfile | |
- name: Build and Test | |
run: | | |
yarn build | |
yarn test | |
env: | |
SYNCKIT_TIMEOUT: 10000 | |
- name: Lint | |
run: yarn lint | |
# eslint-plugin-unicorn using `with` syntax is not supported | |
if: ${{ matrix.node != 18.18 }} | |
env: | |
PARSER_NO_WATCH: true | |
- name: Benchmark | |
run: yarn benchmark | |
- name: Codecov | |
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Run codacy-coverage-reporter | |
# bad Windows -- https://github.com/codacy/codacy-coverage-reporter-action/issues/91 | |
if: ${{ !github.event.pull_request.head.repo.fork && matrix.os != 'windows-latest' }} | |
uses: codacy/codacy-coverage-reporter-action@89d6c85cfafaec52c72b6c5e8b2878d33104c699 # v1.3.0 | |
continue-on-error: true | |
with: | |
api-token: ${{ secrets.CODACY_API_TOKEN }} |