New bundle after linting #4
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: "run ci" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: "Run ESLint" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: yarn install | |
- run: yarn run lint | |
bundle: | |
name: "Bundle distribution" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: yarn install | |
- run: yarn run generate | |
- run: yarn run compile | |
- run: yarn run bundle |