fix: sort items by index in case they end in the same position (#655) #147
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 | |
concurrency: | |
group: publish-${{ github.github.base_ref }} | |
cancel-in-progress: true | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'beta' | |
jobs: | |
test-and-publish: | |
name: 'Test & Publish' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' | |
- name: Setup Pnpm | |
uses: pnpm/action-setup@v2.2.4 | |
with: | |
version: 7 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.19.0 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm --filter "./packages/**" --prefer-offline install --no-frozen-lockfile | |
- name: Publish | |
run: | | |
git config --global user.name 'Tanner Linsley' | |
git config --global user.email 'tannerlinsley@users.noreply.github.com' | |
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" | |
pnpm cipublish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |