This repository has been archived by the owner on Jul 20, 2024. It is now read-only.
chore(deps): update dependency @types/jest to v29.5.11 #51
Workflow file for this run
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'] | |
pull_request: | |
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: 'npm run lint' | |
test: | |
name: 'Run unit tests with Jest and upload Coverage' | |
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: 'npm run test' | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
bundle: | |
name: 'Bundle package with Rollup.js' | |
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: 'npm run build' |