Sha256: a8b9bb3bee4ef30687ea87e25adde9de3b82898d3996540c236c1d4c4915c40c

Contents?: true

Size: 1020 Bytes

Versions: 16

Compression:

Stored size: 1020 Bytes

Contents

name: JS unit tests for Renderer package

on: [push, pull_request]

jobs:
  build:
    strategy:
      matrix:
        node: [12, 14]
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Setup Node
      uses: actions/setup-node@v2-beta
      with:
        node-version: ${{ matrix.node }}
    - name: Print system information
      run: |
        echo "Linux release: "; cat /etc/issue
        echo "Current user: "; whoami
        echo "Current directory: "; pwd
        echo "Node version: "; node -v
        echo "Yarn version: "; yarn --version
    - name: Save root node_modules to cache
      uses: actions/cache@v2
      with:
        path: node_modules
        key: v4-package-node-modules-cache-${{ hashFiles('yarn.lock') }}
    - name: Install Node modules with Yarn for renderer package
      run: |
        yarn install --no-progress --no-emoji
        yarn run eslint -v
        sudo yarn global add yalc
    - name: Run JS unit tests for Renderer package
      run: yarn test

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
react_on_rails-13.2.0 .github/workflows/package-js-tests.yml
react_on_rails-13.1.0 .github/workflows/package-js-tests.yml
react_on_rails-13.0.2 .github/workflows/package-js-tests.yml
react_on_rails-13.0.1 .github/workflows/package-js-tests.yml
react_on_rails-13.0.0 .github/workflows/package-js-tests.yml
react_on_rails-13.0.0.beta.0 .github/workflows/package-js-tests.yml
react_on_rails-12.6.0 .github/workflows/package-js-tests.yml
react_on_rails-12.5.2 .github/workflows/package-js-tests.yml
react_on_rails-12.5.1 .github/workflows/package-js-tests.yml
react_on_rails-12.5.0 .github/workflows/package-js-tests.yml
react_on_rails-12.4.0 .github/workflows/package-js-tests.yml
react_on_rails-12.4.0.rc.0 .github/workflows/package-js-tests.yml
react_on_rails-12.3.0 .github/workflows/package-js-tests.yml
react_on_rails-12.2.0 .github/workflows/package-js-tests.yml
react_on_rails-12.1.0 .github/workflows/package-js-tests.yml
react_on_rails-12.0.5.beta.0 .github/workflows/package-js-tests.yml