v3.0.0 #15
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 | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: 🛎 Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: 🛠 Setup node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: 📦 Install | |
run: npm ci | |
- name: 🧑🏫 Check Format | |
run: npm run format | |
- name: 🕵️ Lint | |
run: npm run lint | |
- name: 👷♂️ Build | |
run: npm run build | |
- name: 🧪 Test | |
run: npm run test | |
- name: 💯 Report to Coveralls | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: 👀 Check for version update | |
id: version | |
uses: EndBug/version-check@v1 | |
with: | |
file-url: https://unpkg.com/small-store/package.json | |
static-checking: localIsNew | |
- name: 📋 Get Commits since last Release | |
if: steps.version.outputs.changed == 'true' | |
uses: simbo/changes-since-last-release-action@v1 | |
id: changes | |
- name: 🎁 Create tag and GitHub Release | |
if: steps.version.outputs.changed == 'true' | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.version.outputs.version }} | |
release_name: Release ${{ steps.version.outputs.version }} | |
body: | | |
Changes since ${{ steps.changes.outputs.last-tag }}: | |
${{ steps.changes.outputs.log }} | |
- name: 🚚 Publish to npm | |
if: steps.version.outputs.changed == 'true' | |
uses: JS-DevTools/npm-publish@v1 | |
with: | |
token: ${{ secrets.NPM_AUTH_TOKEN }} |