Increase sleep times in test (#7) #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |