mirror of
https://github.com/chenasraf/simple-scaffold.git
synced 2026-05-18 01:29:09 +00:00
v1.1 ### New features - Enable custom transformations with `beforeWrite` - Add built-in date formatting helpers ### Commit log * add develop branch * chore: remove unneeded dep * Update issue templates [skip ci] * update PR workflow * implementation of before-write callback + tests * clean up + update docs * add explicit function return types * bump version number * docs: add table of contents * correct version number * update workflows + release alpha * update README.md [skip ci] * update README.md [skip ci] * implement now & custom date helpers * docs + bump version number * docs cleanup * update docs * accept async beforeWrite callback * fix docs * remove redundent check * fix type import * update README.md [skip ci] * bump version number [skip ci] * update docs [skip ci]
18 lines
399 B
YAML
18 lines
399 B
YAML
name: Pull Requests
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [master, develop]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: "12.x"
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn build
|
|
- run: yarn test
|