diff --git a/actions.yml b/actions.yml new file mode 100644 index 00000000..03a0e7c8 --- /dev/null +++ b/actions.yml @@ -0,0 +1,20 @@ +name: CI + +on: + # Triggers the workflow on push or pull request events + push: + branches: [ master ] + pull_request: + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + - name: Install dependencies and build latest.zip + run: npm install && npm run build + \ No newline at end of file