feat(WL-110): Add the new properties from Theme (III) #235
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 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| jobs: | |
| common: | |
| name: Lint and Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 24 | |
| - name: Semantic Release Check | |
| uses: amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GH_TOKEN_V2 }} | |
| - name: Setup Examples | |
| run: | | |
| cd examples/expoapp | |
| npm install | |
| cd ../.. | |
| - name: Install dependencies | |
| env: | |
| NPM_TOKEN_V2: ${{ secrets.NPM_TOKEN_V2 }} | |
| run: | | |
| npm set //registry.npmjs.org/:_authToken=$NPM_TOKEN_V2 | |
| npm ci |