Skip to content
This repository has been archived by the owner on Aug 4, 2024. It is now read-only.

feat(update-deps): eslint v9 is now the only supported version #2

feat(update-deps): eslint v9 is now the only supported version

feat(update-deps): eslint v9 is now the only supported version #2

Workflow file for this run

name: Publish beta versions
on:
push:
branches: [beta]
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/beta' }}
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: yarn --frozen-lockfile
- run: yarn run semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}