fix: updating manifests when only the order of keys change #75
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, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: | |
- '18' | |
- '20' | |
- '22' | |
platform: | |
- ubuntu-latest | |
- windows-latest | |
name: '${{matrix.platform}} / Node.js ${{ matrix.node }}' | |
runs-on: ${{matrix.platform}} | |
steps: | |
- name: Checkout Commit | |
uses: actions/checkout@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: checkout main | |
run: git branch -f main origin/main | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 9 | |
standalone: true | |
- name: pnpm install | |
run: pnpm install | |
- name: run tests | |
run: pnpm test |