Nothing Special   »   [go: up one dir, main page]

Skip to content

Merge pull request #6 from nicepkg/release-please--branches--master--… #15

Merge pull request #6 from nicepkg/release-please--branches--master--…

Merge pull request #6 from nicepkg/release-please--branches--master--… #15

Workflow file for this run

name: Check
on:
push:
branches:
- "**"
pull_request:
branches:
- master
jobs:
check:
if: "!contains(github.event.head_commit.message, 'chore: release')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js v20
uses: actions/setup-node@v4
with:
node-version: "20"
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm install
- name: Test
run: npm run test
- name: Build
run: npm run build