📦 chore: bump webpack-dev-server from 4.15.1 to 5.0.1 #106
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: Validate | |
on: | |
pull_request: | |
push: | |
jobs: | |
validate: | |
name: Validating Code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'yarn' | |
- name: Install | |
run: yarn install --frozen-lockfile | |
- name: Check types and Build | |
run: yarn tsc --noEmit && NODE_ENV=PRODUCTION yarn run build | |
- name: Pack Chrome Extension | |
run: yarn run extension:pack | |
- name: Upload Userscript And Extension | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Userscript and Unpacked Extension | |
path: | | |
dist/eureka-loader.user.js | |
dist/unpacked-extension.zip | |
- name: Create Nightly Release | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "aurora" | |
prerelease: true | |
title: "Aurora" | |
files: | | |
dist/eureka-loader.user.js | |
dist/unpacked-extension.zip |