Basic Pipeline - aquiladev/ddns-action GitHub Wiki
Open GitHub repository → Actions → New Workflow → Set up a workflow yourself
-
Define a trigger of the pipeline (e.g. only on
masterbranch)on: push: branches: - master -
Leave the definition of the job and run environment
jobs: build: runs-on: ubuntu-latest -
Define prep-steps
steps: - uses: actions/checkout@v2 - name: Setup Node uses: actions/setup-node@v1 with: node-version: '10.x' - run: npm ci - run: npm run build
Then you need to commit your main.yml by pressing Start commit button.