chore: update Fastfile to publish to new distribution groups (#355) #2108
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: Test | |
on: [push, pull_request] | |
jobs: | |
test-deploy: | |
name: Test able to deploy to npm | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '16' | |
cache: 'yarn' | |
- run: yarn install --frozen-lockfile | |
- name: Compile | |
run: yarn typescript | |
- name: Publish test | |
run: npm publish --dry-run | |
assert-lint: | |
name: Assert lint check passes and no lint errors exist | |
permissions: | |
checks: write # for eslint annotation action to create check for the PR | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '16' | |
cache: 'yarn' | |
- run: yarn install --frozen-lockfile | |
- run: yarn lint:report | |
- name: Annotate Code Linting Results | |
uses: ataylorme/eslint-annotate-action@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
check-name: 'eslint results' | |
only-pr-files: false | |
fail-on-warning: false | |
fail-on-error: true | |
markdown-report-on-step-summary: true | |
report-json: "eslint_report.json" |