Skip to content

feat: Angular loves Orama Search #1

feat: Angular loves Orama Search

feat: Angular loves Orama Search #1

Workflow file for this run

on: push
name: Build Angular
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v1
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and npm run build
run: |
npm i
npm run build -- --base /${{ github.event.repository.name }}/
- name: Push Build to Releases
uses: ncipollo/release-action@v1
with:
artifacts: "dist/angular-githubaction/*"
token: ${{ secrets.TOKEN }}