1.0.0 #8
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Release | |
on: | |
push: | |
tags: | |
- "*" | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
Release: | |
runs-on: "windows-latest" | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: "π₯ Checkout" | |
uses: actions/checkout@v4 | |
- name: "ποΈ Setup Node" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.15.0" | |
registry-url: "https://registry.npmjs.org" | |
- name: "π Install dependencies" | |
run: npm ci | |
- name: "ποΈ Build" | |
run: npm run build | |
- name: "ποΈ Lint" | |
run: npm run lint | |
- name: "π§ͺ Test" | |
run: npm run test | |
- name: "π Retrieve package information" | |
uses: geekyeggo/npm-pkg@v1 | |
id: pkg | |
- name: "π€ Publish" | |
run: npm publish --provenance --access public --tag ${{ steps.pkg.outputs.version-tag }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |