Skip to content

Increase sleep times in test (#7) #17

Increase sleep times in test (#7)

Increase sleep times in test (#7) #17

Workflow file for this run

name: Compile
on:
push:
branches: [main]
jobs:
compile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
- uses: actions/setup-node@v2
with:
node-version: '17'
- name: Compile action
run: |
yarn install --frozen-lockfile
yarn compile
- name: Commit new index.js
run: |
git config --global user.email "eli.segal@gmail.com"
git config --global user.name "rockem"
git diff --quiet HEAD || git commit -am "ci:Updated compilation of index.js [skip ci]"
git push