Skip to content

Create CODEOWNERS (#14) #47

Create CODEOWNERS (#14)

Create CODEOWNERS (#14) #47

name: Forms Flow web-components
on:
workflow_dispatch:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
jobs:
setup-job:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: "true"
# linting:
# needs: setup-job
# runs-on: ubuntu-20.04
# strategy:
# matrix:
# node-version: [16]
# steps:
# - uses: actions/checkout@v2
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v1
# with:
# node-version: ${{ matrix.node-version }}
# - name: Install dependencies
# run: |
# npm ci
# - name: Linting
# run: |
# npm run lint
# unit-tests:
# needs: setup-job
# runs-on: ubuntu-20.04
# strategy:
# matrix:
# node-version: [14]
# steps:
# - uses: actions/checkout@v2
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v1
# with:
# node-version: ${{ matrix.node-version }}
# - name: Install dependencies
# run: |
# npm ci
# - name: Unit Test
# id: test
# run: |
# npm test a
build-check:
needs: setup-job
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Build to check strictness
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
working-directory: ./forms-flow-webcomponent
- name: Build
id: build
run: |
npm run build
working-directory: ./forms-flow-webcomponent