feat: publish updated alpha #8
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Validate | |
on: | |
push: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
env: | |
# this environment variable is used by setup-node to enable custom | |
# registry access | |
NODE_AUTH_TOKEN: ${{ secrets.PACKAGE_REGISTRY_ACCESS_TOKEN }} | |
strategy: | |
matrix: | |
scripts: ["test", "test-integration", "build", "eslint", "prettier"] | |
# don't fail-fast: scripts are not related, so allow all failures to show up | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: "8.x" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16.x" | |
cache: "pnpm" | |
cache-dependency-path: "pnpm-lock.yaml" | |
registry-url: 'https://npm.pkg.github.com' | |
- name: Install dependencies | |
run: | | |
pnpm install --frozen-lockfile | |
- name: "Run '${{ matrix['scripts'] }}' script" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: "pnpm run ${{ matrix['scripts'] }}" |