fix(js-themes-toolkit): use rtlcss for conversion and keep r2 export for compatibility #1646
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
# Based on: https://github.com/actions/starter-workflows/blob/master/ci/node.js.yml | |
name: projects | |
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- 'guidelines/**' | |
- 'maintenance/projects/js-themes-toolkit-v8-x/**' | |
- 'maintenance/projects/js-themes-toolkit-v9-x/**' | |
- 'maintenance/projects/js-toolkit/**' | |
- 'maintenance/projects/senna/**' | |
pull_request: | |
branches: [master] | |
paths-ignore: | |
- 'guidelines/**' | |
- 'maintenance/projects/js-themes-toolkit-v8-x/**' | |
- 'maintenance/projects/js-themes-toolkit-v9-x/**' | |
- 'maintenance/projects/js-toolkit/**' | |
- 'maintenance/projects/senna/**' | |
env: | |
CI: true | |
yarn-cache-name: yarn-cache-25 | |
yarn-cache-path: .yarn | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use or update Yarn cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.yarn-cache-path }} | |
key: ${{ runner.os }}-${{ env.yarn-cache-name }}-${{ hashFiles('**/yarn.lock') }} | |
- run: yarn --cache-folder=${{ env.yarn-cache-path }} --frozen-lockfile | |
- run: yarn --cache-folder=${{ env.yarn-cache-path }} build | |
- run: yarn --cache-folder=${{ env.yarn-cache-path }} test | |
test-windows: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use or update Yarn cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.yarn-cache-path }} | |
key: ${{ runner.os }}-${{ env.yarn-cache-name }}-v2-${{ hashFiles('**/yarn.lock') }}- | |
- run: yarn --cache-folder=${{ env.yarn-cache-path }} --frozen-lockfile | |
- run: yarn --cache-folder=${{ env.yarn-cache-path }} build | |
- run: yarn --cache-folder=${{ env.yarn-cache-path }} test |