diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml deleted file mode 100644 index ee53cc7..0000000 --- a/.github/workflows/push.yml +++ /dev/null @@ -1,51 +0,0 @@ -# This is a workflow that runs on every successful merge to master - -name: CI - -# Controls when the action will run. -on: - # Triggers the workflow on push events for the master branch - push: - branches: [master] - - # 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: - bump-version-and-publish: - # The type of runner that the job will run on - runs-on: ubuntu-latest - # 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 - - name: Checkout - uses: actions/checkout@v2 - - # Sets up Node and an .npmrc file. This is the official Github supported way to set up node. - - uses: actions/setup-node@v4 - with: - node-version: "12" - registry-url: "https://registry.npmjs.org" - cache: "yarn" - always-auth: "true" - - - name: Install packages - run: yarn --frozen-lockfile - - - name: Set Firefox Env Variable - run: export FIREFOX_BIN=$(which firefox) - - - name: Set Chrome Env Variable - run: export CHROME_BIN=$(which chrome) - - - name: Print environment variables - run: echo "CHROME_BIN = $CHROME_BIN FIREFOX_BIN = $FIREFOX_BIN" - - - name: CI BUILD + UT - run: yarn build && yarn test - - # - name: Publish package - # run: yarn publish --access public - # env: - # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}