deft-yoga 0.7.1

Rust bindings for Facebook's Yoga, a Flexbox layout engine
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Setup JavaScript envirionment

runs:
  using: "composite"
  steps:
    - name: Setup Node environment
      uses: actions/setup-node@v3
      with:
        node-version: 20.x
        cache: yarn
        cache-dependency-path: yarn.lock
      env:
        # https://github.com/actions/setup-node/issues/317
        FORCE_COLOR: 0

    - name: yarn install
      shell: bash
      run: yarn install --frozen-lockfile