From 2deb78fb7509bbf1a60023ab45de694890365667 Mon Sep 17 00:00:00 2001 From: avo Date: Sun, 27 Oct 2024 12:36:50 -0500 Subject: [PATCH] lint --- .github/workflows/deploy.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 077d284..dc1303f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,14 +1,10 @@ # This is a basic workflow to help you get started with Actions - name: Deploy content to Pages # Controls when the workflow will run on: - # Triggers the workflow on push or pull request events but only for the "master" branch push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] + branches: ['master'] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -25,15 +21,15 @@ concurrency: cancel-in-progress: true # A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: +jobs: build: environment: name: github-pages - url: ${{ steps.deployment.outputs.page_url }} + url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest - + steps: - - name: Checkout + - name: Checkout uses: actions/checkout@v4 - name: Set up Node uses: actions/setup-node@v4