Skip to content

chore: bump semantic-release from 19.0.5 to 23.0.0 #573

chore: bump semantic-release from 19.0.5 to 23.0.0

chore: bump semantic-release from 19.0.5 to 23.0.0 #573

Workflow file for this run

name: CI
on:
push:
branches:
- develop
- stable
pull_request:
types:
- 'synchronize'
- 'opened'
branches:
- '**'
jobs:
build-and-test:
name: Build and Test (Node ${{ matrix.node }})
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
node:
- 20.x
- 18.x
- 16.x
steps:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- uses: actions/checkout@v3
- name: Restore Dependency Cache
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.OS }}-dependency-cache-${{ hashFiles('**/package.json') }}
- run: npm install
- run: npm run lint
- run: npm run build
- run: npm test
deploy:
name: Deploy
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/stable' }}
timeout-minutes: 30
needs:
- build-and-test
steps:
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc
- uses: actions/setup-node@v3
with:
node-version: 16.x
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Restore Dependency Cache
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.OS }}-dependency-cache-${{ hashFiles('**/package.json') }}
- run: npm install
- run: npm run publish:ci
env:
GH_TOKEN: ${{ secrets.IONITRON_GITHUB_TOKEN }}
GIT_AUTHOR_NAME: Ionitron
GIT_AUTHOR_EMAIL: hi@ionicframework.com
GIT_COMMITTER_NAME: Ionitron
GIT_COMMITTER_EMAIL: hi@ionicframework.com