Skip to content

Commit

Permalink
build: Add env to release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbals committed Apr 18, 2024
1 parent ea5dad0 commit 9373ad6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: CI
name: Test

on: [push]

jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
test:
name: Test

runs-on: ${{ matrix.os }}
strategy:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
environment: npm
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/size.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Size

on: [pull_request]

jobs:
size:
name: Check the size of the bundles
name: Size

runs-on: ubuntu-latest
env:
Expand Down

0 comments on commit 9373ad6

Please sign in to comment.