• v2.3.0 aa759c6c94

    MaksimZhukov released this 2021-07-20 20:22:13 +08:00 | 301 commits to main since this release

    This release introduces dependency caching support for the pnpm package manager (#278).

    Caching pnpm dependencies:

    # This workflow uses actions that are not certified by GitHub.
    # They are provided by a third-party and are governed by
    # separate terms of service, privacy policy, and support
    # documentation.
    
    steps:
    - uses: actions/checkout@v2
    - uses: pnpm/action-setup@646cdf48217256a3d0b80361c5a50727664284f2
      with:
        version: 6.10.0
    - uses: actions/setup-node@v2
      with:
        node-version: '14'
        cache: 'pnpm'
    - run: pnpm install
    - run: pnpm test
    

    NOTE: pnpm caching support requires pnpm version >= 6.10.0

    Downloads