Sha256: b03e4cc6590a46590c09bb5118273b876ec76085f38cc2cd4a379dbdfb38543a

Contents?: true

Size: 1019 Bytes

Versions: 7

Compression:

Stored size: 1019 Bytes

Contents

name: JS unit tests for Renderer package

on: [push, pull_request]

jobs:
  build:
    strategy:
      matrix:
        node: [12, 14]
    runs-on: ubuntu-22.04
    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: v5-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

7 entries across 7 versions & 1 rubygems

Version Path
react_on_rails-13.4.0 .github/workflows/package-js-tests.yml
react_on_rails-13.3.5 .github/workflows/package-js-tests.yml
react_on_rails-13.3.4 .github/workflows/package-js-tests.yml
react_on_rails-13.3.3 .github/workflows/package-js-tests.yml
react_on_rails-13.3.2 .github/workflows/package-js-tests.yml
react_on_rails-13.3.1 .github/workflows/package-js-tests.yml
react_on_rails-13.3.0 .github/workflows/package-js-tests.yml