Skip to content

GitHub actions wrapper for the yarn CLI

License

Notifications You must be signed in to change notification settings

inarix/actions-yarn

 
 

Repository files navigation

GitHub Actions for yarn

Build Status

This Action for yarn enables arbitrary actions with the yarn command-line client. Uses the node 11 docker image as its base.

Usage

An example workflow to lint and test:

on: push
name: Main
jobs:
  lint-and-test:
    name: Test
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - name: Install
      uses: CultureHQ/actions-yarn@master
      with:
        args: install
    - name: Lint
      uses: CultureHQ/actions-yarn@master
      with:
        args: lint
    - name: Test
      uses: CultureHQ/actions-yarn@master
      with:
        args: test

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/CultureHQ/actions-yarn.

License

The code is available as open source under the terms of the MIT License.

About

GitHub actions wrapper for the yarn CLI

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 60.7%
  • Dockerfile 37.2%
  • Ruby 2.1%