Update README.md #7
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: 'Continuous Integrations' | |
on: | |
push: | |
branches: ['main'] | |
jobs: | |
lint: | |
name: 'Run ESLint and Prettier' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'Checkout the repository' | |
uses: 'actions/checkout@v3' | |
- name: 'Setup Node.js and npm' | |
uses: './.github/actions/setup' | |
- name: 'Execute the lint script' | |
run: 'yarn lint' | |
test: | |
name: 'Run unit tests with Jest' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'Checkout the repository' | |
uses: 'actions/checkout@v3' | |
- name: 'Setup Node.js and npm' | |
uses: './.github/actions/setup' | |
- name: 'Execute the test script' | |
run: 'yarn test' | |
bundle: | |
name: 'Bundle package' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'Checkout the repository' | |
uses: 'actions/checkout@v3' | |
- name: 'Setup Node.js and npm' | |
uses: './.github/actions/setup' | |
- name: 'Execute the build script' | |
run: 'yarn build' |