name: Front End CI on: push: branches: [master] paths: - "FrontEnd/**" pull_request: branches: [master] paths: - "FrontEnd/**" jobs: build: name: Build runs-on: ubuntu-latest defaults: run: shell: bash working-directory: FrontEnd steps: - uses: actions/checkout@v2 - name: Use Node.js 15 uses: actions/setup-node@v1 with: node-version: "15" - name: Restore Packages run: yarn - name: Build App run: yarn build - name: Lint Code run: yarn lint - name: Upload Artifact uses: actions/upload-artifact@v2 with: name: dist path: FrontEnd/dist/