Skip to content

Support ARM macOS too #31

Support ARM macOS too

Support ARM macOS too #31

Workflow file for this run

name: Check
on:
push:
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
runner:
- ubuntu-latest
- macos-latest
version:
- 0.8.1
- 0.8.3
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- uses: ./
with:
version: ${{ matrix.version }}
- run: test "$(intlc --version)" = v${{ matrix.version }}
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
- run: nix develop -c pnpm install
- run: nix develop -c pnpm run typecheck
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
- run: nix develop -c pnpm install
- run: nix develop -c pnpm run lint
fmt:
name: Check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
- run: nix develop -c pnpm install
- run: nix develop -c pnpm run format