Files
formplex-react/.github/workflows/pull_requests.yml
2022-11-10 23:05:08 +02:00

18 lines
401 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: '14.x'
- run: yarn install --frozen-lockfile
- run: yarn build
# - run: yarn test