Skip to content

Update README.md

Update README.md #11

Workflow file for this run

name: Build application
on:
push:
branches:
- main
workflow_dispatch:
jobs:
lint:
name: Lint files
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Lint files
run: yarn lint
- name: Typecheck files
run: yarn typecheck
build-library:
name: Build library
runs-on: ubuntu-latest
needs: [lint]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Build package
run: yarn prepare
update-version:
name: Update version
runs-on: ubuntu-latest
needs: [build-library]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Git
run: |
git config --global user.name "RichardRNStudio"
git config --global user.email "info@rnstudio.hu"
- name: Update version
run: |
npm version patch -m "Bump version to %s"
git push --force --follow-tags
env:
NODE_AUTH_TOKEN: ${{secrets.ACTIONS_PAT}}