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
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: 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 }} |