feat: Add simple filters for globals, collections and internal collec… #116
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: Run code checks | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| name: Check code style | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| shell: bash | |
| run: | | |
| yarn install | |
| - name: Check format | |
| shell: bash | |
| run: | | |
| yarn ci | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Check if build works | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| shell: bash | |
| run: | | |
| yarn install | |
| - name: Build | |
| shell: bash | |
| run: | | |
| yarn build | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Run tests | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| shell: bash | |
| run: | | |
| yarn install | |
| - name: Test | |
| shell: bash | |
| run: | | |
| yarn test |