Add SwiftPM support (#1339) #617
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: JavaScript | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
FORCE_COLOR: 3 | |
jobs: | |
benchmark: | |
name: Benchmark [${{ matrix.os }}] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup-js | |
- name: yarn benchmark | |
run: yarn benchmark | |
working-directory: javascript | |
build: | |
name: Build [${{ matrix.os }}] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup-js | |
- name: yarn build | |
run: yarn build | |
working-directory: javascript | |
test: | |
name: Test [${{ matrix.os }}] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup-js | |
- name: yarn test | |
run: yarn test | |
working-directory: javascript | |
lint: | |
name: ESLint (All Packages) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: yarn install | |
run: yarn install --frozen-lockfile | |
- name: yarn lint | |
run: yarn lint | |
typecheck: | |
name: Typecheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: yarn install | |
run: yarn install --frozen-lockfile | |
working-directory: javascript | |
- name: yarn tsc | |
run: yarn tsc | |
working-directory: javascript | |
pack: | |
name: Pack | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup-js | |
- name: yarn pack | |
run: yarn pack --filename yoga-layout.tar.gz | |
working-directory: javascript | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: npm-package | |
path: javascript/yoga-layout.tar.gz |