Skip to content

chore(deps): bump semver from 6.3.0 to 6.3.1 #15

chore(deps): bump semver from 6.3.0 to 6.3.1

chore(deps): bump semver from 6.3.0 to 6.3.1 #15

Workflow file for this run

name: release
on:
push:
branches:
- master
paths-ignore:
- '*.md'
env:
NODE_VERSION: 20
jobs:
release:
if: github.repository == 'jsaguet/eslint-plugin-clean-codestyle'
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install
run: yarn install --frozen-lockfile
- name: Test
run: yarn test
- name: Build
run: yarn build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release