Jonathan Cardoso Machado
[en] / pt-br
HOMEBLOG

Testing Features of the Blog Here - Part 1

react-nativeci-cdcircle-cifastlane
This is a draft post - Please do not share 😉
Translations available for: Português do Brasil

In this article, we will learn how to deploy React Native apps to the Android Play Store automatically using fastlane and CircleCI.

Our goal is to use specific release tracks on Play Store to give us a fast and reliable environment to test and iterate on our app, be it on the internal tracking branch or the open beta one, before sending the release to production and making it available on the Play Store.

Link with hash - ptbr

Screenshot #1:

Image alt text
This is a caption

Each of the three release tracks we are going to use is going to match one of the branches on our repository:

Emojis: 😁😂🤣😃😄😅😆

Abbreviations: ACL MDAST AST

Heading 2

This is some text right below a section, spacing should be cool here, and not be too bigger or too small.

Heading 3

This is some text right below a section, spacing should be cool here, and not be too bigger or too small.

Heading 4

This is some text right below a section, spacing should be cool here, and not be too bigger or too small.

This is a strong, then a emphasized text.

This is a center aligned text

Now some quoted text:

Line 1 - Something something something something something something something something something something
Line 2 - Something something something something something something something something something something
Line 3 - Something something something something something something something something something something
Line 4 - Something something something something something something something something something something

Line 4.1 - Something something something something something something something something something something

We could give the source here

Some JSX Code running directly from Markdown ( mdx):


This is a footnote1.

This is a topic list:

  • Topic A
  • Topic B
  • Topic C

This is a numbered list:

  1. This is a numbered list
  2. there it goes
  3. so on...
    asda
    • It can be nested
    • Like this.

This is a table:

column1column2column3
r1col1r1col2r1col3
r2col1r2col2r2col3
r3col1r3col2r3col3
r4col1r4col2r4col3
This is a pre
  formatted text.
    It will appear exactly like typed.

This is a inline code echo "Hello World"

This is a highlighted inline code: console.log("lol")

This is a highlighted codeblock with line numbers:

import React from 'react'

import { Text } from 'rebass'

export const ListItem = (props) => {
  return <Text variant="body" as="li" {...props} />
}

This is a highlighted codeblock with line highlights:

import React from 'react'

import { Text } from 'rebass'
export const ListItem = (props) => {
  return <Text variant="body" as="li" {...props} />
}

This is a highlighted codeblock with both line numbers and line highlights:

import React from 'react'

import { Text } from 'rebass'
export const ListItem = (props) => {
  return <Text variant="body" as="li" {...props} />
}

This is a highlighted codeblock with some lines hidden:

import React from 'react'

import { Text } from 'rebass'


export const ListItem = (props) => {
  return <Text variant="body" as="li" {...props} />
}

This is a highlighted codeblock with a file title:

example-file.js
console.log('lol')

This is a highlighted codeblock for an embed file:

import React, { useState } from 'react'

import { Button as RebassButton } from 'rebass'


export const SampleButton = () => {
  const [counter, setCounter] = useState(0)

  const changeCounter = () => {
    setCounter(counter + 1)
  }

  return (
    <RebassButton onClick={changeCounter}>
      Click Me! I&apos;ve been clicked {counter} times.
    </RebassButton>
  )
}

This is a shell prompt:

echo "stuff" | grep stuff
stuff

First Term
This is the definition of the first term.

Second Term
This is one definition of the second term.
This is another definition of the second term.

This is some HTML

Alpha Track -> develop Branch Beta Track -> staging Branch Production Track -> master branch


  1. Something can be said here.


Made with
using Gatsby