chore: release 3.0.1 #132
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: | |
branches: [main, next] | |
pull_request: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Enable corepack | |
run: corepack enable | |
- name: Setup Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Check types | |
run: pnpm run check | |
- name: Lint | |
run: pnpm run lint | |
- name: Check format | |
run: pnpm run format:check | |
- name: Build action | |
run: pnpm run package | |
- name: Compare output | |
run: | | |
if [ "$(git diff --text --ignore-space-at-eol --ignore-cr-at-eol dist/ | wc -l)" -gt "0" ]; then | |
echo "Detected uncommitted changes after build. See status below:" | |
git diff --text --ignore-space-at-eol --ignore-cr-at-eol | |
exit 1 | |
fi | |
test-action: | |
name: Test on ${{ matrix.runner }} | |
runs-on: ${{ matrix.runner }} | |
needs: [lint] | |
strategy: | |
matrix: | |
runner: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install cargo-hack (from crates.io) | |
uses: ./ | |
with: | |
crate: cargo-hack | |
version: ^0.4.4 | |
cache-key: test | |
- name: Install cargo-sort (from git) | |
uses: ./ | |
with: | |
crate: cargo-sort | |
git: https://github.com/devinr528/cargo-sort | |
tag: v1.0.9 | |
- name: Print cargo hack version | |
run: cargo hack --version | |
- name: Print cargo sort version | |
run: cargo sort --version |