main.yml 667 B

123456789101112131415161718192021222324252627282930313233343536
  1. name: react_go
  2. on:
  3. push:
  4. branches: [ master ]
  5. pull_request:
  6. branches: [ master ]
  7. jobs:
  8. frontend:
  9. name: Frontend build
  10. runs-on: ubuntu-latest
  11. strategy:
  12. matrix:
  13. node-version: [12.x]
  14. steps:
  15. - name: Check out branch
  16. uses: actions/checkout@v4
  17. - name: Use Node.js ${{ matrix.node-version }}
  18. uses: actions/setup-node@v1
  19. with:
  20. node-version: ${{ matrix.node-version }}
  21. - name: Build test
  22. run: |
  23. npm install
  24. npm run build
  25. working-directory: ./
  26. - name: artifact
  27. uses: actions/upload-artifact@v1
  28. with:
  29. name: artifact
  30. path: output