Go to file
Sambo Chea b4e314186a Task: Add starter docker yarn actions for github 2021-07-14 15:11:38 +07:00
.github/workflows Task: Add starter docker yarn actions for github 2021-07-14 15:11:38 +07:00
.gitignore Task: Add starter docker yarn actions for github 2021-07-14 15:11:38 +07:00
action.yml Task: Add starter docker yarn actions for github 2021-07-14 15:11:38 +07:00
Dockerfile Task: Add starter docker yarn actions for github 2021-07-14 15:11:38 +07:00
entrypoint.sh Fixed the docker and shell and remove bash 2021-03-26 21:49:36 +07:00
LICENSE Just add example action but not complete yet 2021-03-26 11:54:15 +07:00
README.md Task: Add starter docker yarn actions for github 2021-07-14 15:11:38 +07:00

Starter Docker Yarn - GitHub Actions

  • Run actions with docker (latest version)
  • Quick and easy to use
  • Support custom registry
  • Support custom shell and commands
  • Support Nodejs and Yarn

Usage

- name: Starter Docker Yarn
  uses: CUBETIQ/starter-docker-yarn-actions@master

Example Action

name: CI

on:
  push:
    branches: [ main ]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Starter Docker Yarn Test
        uses: cubetiq/starter-docker-yarn-actions@master
        with:
          shell: sh
          run: |
            docker version
            node --version
            npm --version
            npx --version
            yarn --version            

Contributors