Skip to content

Update README.md

Update README.md #235

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ webpack-build ]
pull_request:
branches: [ webpack-build ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run : |
npm ci
npm run vue-lint
lint-fix:
runs-on: ubuntu-latest
needs: [lint]
if: failure()
steps:
- name: Chckout the code
uses: actions/checkout@v2
- name: Lint fix everything
run: |
npm ci
npm run vue-lint --fix
- name: commit and push changes
uses: devops-infra/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
commit_message: ran the lint fixer
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
needs: [lint]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a single command using the runners shell
- name: Run a one-line script
run: |
export NODE_OPTIONS=--openssl-legacy-provider
npm ci
npm run vue-build
# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.