docs: correct typo in introduction.md (#4910) #643
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 | |
on: [push] | |
jobs: | |
test-and-publish: | |
if: github.event_name != 'pull_request' | |
name: 'Test & Publish' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: '0' | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
cache: pnpm | |
- run: | | |
pnpm install --frozen-lockfile | |
git config --global user.name 'Tanner Linsley' | |
git config --global user.email '[email protected]' | |
pnpm run cipublish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |