Refactor config folder to ts files. #7911
Workflow file for this run
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: Validate | |
on: [push, pull_request] | |
jobs: | |
skip_check: | |
name: Check concurrent runs | |
runs-on: ubuntu-latest | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- uses: fkirc/skip-duplicate-actions@v5 | |
id: skip_check | |
with: | |
concurrent_skipping: same_content_newer | |
cancel_others: true | |
# We want to skip only concurrent runs. Subsequent runs/retries should be allowed. | |
skip_after_successful_duplicate: false | |
test: | |
name: Lint & Test | |
needs: skip_check | |
if: needs.skip_check.outputs.should_skip != 'true' | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
timeout-minutes: 30 | |
steps: | |
- name: Check out Repo | |
uses: actions/checkout@v4 | |
- id: pnpm-setup | |
uses: pnpm/action-setup@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: pnpm | |
node-version-file: package.json | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build Sku | |
run: pnpm build | |
- name: Set Puppeteer Cache Directory | |
id: set-puppeteer-cache | |
run: echo "PUPPETEER_CACHE_DIR=$HOME/.cache/puppeteer" >> $GITHUB_OUTPUT | |
- name: Cache Puppeteer | |
id: puppeteer-cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.set-puppeteer-cache.outputs.PUPPETEER_CACHE_DIR }} | |
key: puppeteer-${{ runner.os }}-${{ hashFiles('./pnpm-lock.yaml') }} | |
- name: Cache babel-loader | |
id: babel-loader-cache | |
uses: actions/cache@v4 | |
with: | |
path: 'fixtures/*/node_modules/.cache/babel-loader' | |
key: babel-loader-${{ runner.os }}-${{ hashFiles('./pnpm-lock.yaml') }} | |
- name: Install Puppeteer | |
if: steps.puppeteer-cache.outputs.cache-hit != 'true' | |
run: pnpm puppeteer browsers install chrome | |
- name: Set up hosts | |
# Couldn't get `sudo pnpm setup-test-hosts` to work | |
run: sudo ${{ steps.pnpm-setup.outputs.bin_dest }}/pnpm setup-test-hosts | |
- name: Lint | |
run: pnpm lint | |
- name: Set Jest Cache Directory | |
id: set-jest-cache | |
run: echo "JEST_CACHE_DIR=$(pnpm jest --showConfig | jq '.configs[0].cacheDirectory' | tr -d '"')" >> $GITHUB_OUTPUT | |
- name: Cache Jest cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.set-jest-cache.outputs.JEST_CACHE_DIR }} | |
key: jest-${{ runner.os }}-${{ hashFiles('./pnpm-lock.yaml') }} | |
restore-keys: jest-${{ runner.os }}- | |
- name: restore access to dist/sku | |
run: sudo chmod +x /home/runner/work/sku/sku/packages/sku/dist/bin/sku.js | |
- name: Test | |
run: pnpm run test && pnpm run test:sku-init |