Skip to content

v1.0.8: Moon 2.6.1

v1.0.8: Moon 2.6.1 #8

Workflow file for this run

name: release
on:
release:
types: [published]
jobs:
publish-release-package:
runs-on: ubuntu-latest
if: github.repository == 'aerokube/cypress-moon'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
always-auth: true
registry-url: https://registry.npmjs.org
scope: '@aerokube'
- name: Install dependencies
run: npm install
- name: Test
run: npm test
- run: ci/publish.sh release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}