Skip to content

Commit

Permalink
feat: trigger workflow on branch push
Browse files Browse the repository at this point in the history
  • Loading branch information
evgnomon committed Oct 18, 2023
1 parent 6524923 commit 783fe60
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: build

on:
push:
branches:

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://npm.pkg.github.com'
- run: npm ci
- run: npm run build
- run: npm run test

0 comments on commit 783fe60

Please sign in to comment.