Skip to content

bump actions

bump actions #12

Workflow file for this run

name: ci
on: push
permissions:
contents: write
issues: write
pull-requests: write
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Run Cypress tests 🧪
# https://github.com/cypress-io/github-action
uses: cypress-io/github-action@v6
release:
needs: [test]
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Install only the semantic release 📦
run: npm install semantic-release
- name: Semantic Release 🚀
uses: cycjimmy/semantic-release-action@v4
with:
branch: main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}