chore(deps): bump braces from 3.0.2 to 3.0.3 #161
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, 'ci skip')" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build Chrome version | |
run: yarn build:chrome | |
- name: Upload Chrome version | |
uses: actions/upload-artifact@v4 | |
with: | |
name: chrome | |
path: | | |
dist/ | |
stats.html | |
- name: Build Firefox version | |
run: yarn build:firefox | |
- name: Upload Firefox version | |
uses: actions/upload-artifact@v4 | |
with: | |
name: firefox | |
path: | | |
dist/ | |
stats.html | |
- name: Upload Zip version | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zip-files | |
path: | | |
dist-zip/ |