123456789101112131415161718192021222324252627282930313233343536 |
- name: react_go
- on:
- push:
- branches: [ master ]
- pull_request:
- branches: [ master ]
- jobs:
- frontend:
- name: Frontend build
- runs-on: ubuntu-latest
- strategy:
- matrix:
- node-version: [12.x]
- steps:
- - name: Check out branch
- uses: actions/checkout@v4
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- - name: Build test
- run: |
- npm install
- npm run build
- working-directory: ./
- - name: artifact
- uses: actions/upload-artifact@v1
- with:
- name: artifact
- path: output
|