chore(deps): bump eslint from 9.1.0 to 9.1.1 #1797
Workflow file for this run
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: workflow | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
TRAVIS_COMMIT_MESSAGE: ${{github.event.commits[0].message}} | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' | |
- uses: actions/setup-node@v3 | |
env: | |
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true' | |
with: | |
node-version: '18' | |
cache: 'npm' | |
- name: Build | |
run: | | |
npm install | |
npm run check | |
npm run build | |
- name: Artiface Archive | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Super_preloaderPlus_one_New.user.js | |
path: dist/Super_preloaderPlus_one_New.user.js | |
if-no-files-found: error | |
- name: Test | |
uses: mujo-code/puppeteer-headful@master | |
env: | |
CI: 'true' | |
with: | |
args: npm test | |
doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' | |
- uses: actions/setup-node@v3 | |
env: | |
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true' | |
with: | |
node-version: '18' | |
cache: 'npm' | |
- name: Build | |
run: | | |
npm install | |
- name: Build documentation | |
run: npm run docs:publish | |
- name: Deploy to Github Pages | |
if: ${{ github.event_name == 'push' && success() }} | |
uses: crazy-max/ghaction-github-pages@v2 | |
with: | |
target_branch: gh-pages | |
build_dir: docs/.vuepress/dist | |
keep_history: true | |
commit_message: ${{ format('Commit sha {0}', github.sha)}} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |