1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- name: PR
- on: [pull_request]
- jobs:
- lint:
- name: Linting
- runs-on: ubuntu-latest
- strategy:
- matrix:
- node-version: [12.x]
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- - name: lint
- run: |
- yarn install --frozen-lockfile
- yarn lint
- test:
- name: Testing
- runs-on: ubuntu-latest
- strategy:
- matrix:
- node-version: [12.x]
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- - name: test
- run: |
- yarn install --frozen-lockfile
- yarn test
- build_code:
- name: Build Code
- runs-on: ubuntu-latest
- strategy:
- matrix:
- node-version: [12.x]
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- - name: build
- run: |
- yarn install --frozen-lockfile
- yarn build:code
- build_i18n:
- name: Build i18n
- runs-on: ubuntu-latest
- strategy:
- matrix:
- node-version: [12.x]
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- - name: build
- run: |
- yarn install --frozen-lockfile
- yarn build:i18n
|