new packages #277
Workflow file for this run
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/Build/Publish | |
on: push | |
jobs: | |
test: | |
name: "Test" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Install Node.JS | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
node-version-file: '.tool-versions' | |
- name: Install Javascript dependencies | |
run: yarn install --immutable | |
- name: Run linters | |
run: yarn lint | |
- name: Run tests | |
run: yarn test | |
publish: | |
name: "Publish" | |
needs: test | |
if: startsWith(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
env: | |
NODE_ENV: production | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Install Node.JS | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
registry-url: 'https://registry.npmjs.org' | |
always-auth: true | |
node-version-file: '.tool-versions' | |
- name: Install Javascript dependencies | |
run: yarn install --immutable | |
- name: Build all files | |
run: yarn build | |
- name: Setup yarn publish settings | |
run: | | |
yarn config set npmRegistryServer "https://registry.npmjs.org" | |
yarn config set npmPublishAccess "public" | |
- name: Publish packages 🚀 | |
run: yarn npm publish | |
env: | |
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |