chore(deps): update all devdependencies #1134
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: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18.x" | |
# Install dependencies | |
- run: npm ci | |
# Build and output bunle stats to webpack-stats.json | |
- run: yarn build --env TARGET=chrome | |
# Upload webpack-stats.json to use on relative-ci.yaml workflow | |
- name: Upload webpack stats artifact | |
uses: relative-ci/agent-upload-artifact-action@v2 | |
with: | |
webpackStatsFile: ./webpack-stats.json |