Skip to content

feat (components): podcast #45

feat (components): podcast

feat (components): podcast #45

Workflow file for this run

name: Development
on:
pull_request:
branches:
- "+([0-9])?(.{+([0-9]),x}).x"
- main
- alpha
- beta
- next
- next-major
types: [opened, synchronize, reopened]
jobs:
Test:
name: 🚨 Test 🚨
if: ${{ !contains(github.head_ref, 'all-contributors') }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [16]
os: [ubuntu-latest]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 0
persist-credentials: false
- name: βŽ” Setup node
uses: actions/setup-node@v1
- name: πŸ“₯ Download deps
uses: bahmutov/npm-install@v1
with:
useLockFile: false
env:
HUSKY_SKIP_INSTALL: true
- name: 🚨 Lint
run: npm run lint
- name: πŸ— Build
run: npm run build --if-present
- name: 🚒 Release
uses: cycjimmy/semantic-release-action@v2
with:
semantic_version: 17
extra_plugins: |
@semantic-release/[email protected]
@semantic-release/[email protected]
branches: |
[
'main',
'next',
'next-major',
{name: 'beta', prerelease: true},
{name: 'alpha', prerelease: true}
]
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}