🔧 export type declarations using exports package entry #11
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: 'npm run 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: 'npm run test' | |
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' |