fix(deps): update dependency execa to v9 #481
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, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code 🛎 | |
uses: actions/checkout@v4 | |
- name: Install dependencies 📦 | |
uses: bahmutov/npm-install@v1 | |
- name: Run demo | |
run: | | |
npm run stop-only | |
npm run warn-only | |
- name: Run unit tests 🧪 | |
run: npm test | |
- name: Semantic Release 🚀 | |
if: github.ref == 'refs/heads/master' | |
uses: cycjimmy/semantic-release-action@v3 | |
with: | |
branch: master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |