This repository was archived by the owner on Oct 1, 2025. It is now read-only.
fix: import EmotionJSX type #193
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16.x | |
| - name: Clean Install | |
| run: npm ci | |
| - name: Run lint | |
| run: npm run lint | |
| - name: Run test | |
| run: npm run test | |
| - name: Run build | |
| run: npm run build | |
| - name: Release | |
| run: npx semantic-release@19.0.5 --branches master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |