Skip to content
This repository was archived by the owner on Jul 5, 2024. It is now read-only.

Merge pull request #14 from llTheBlankll/issue-13 #18

Merge pull request #14 from llTheBlankll/issue-13

Merge pull request #14 from llTheBlankll/issue-13 #18

Workflow file for this run

name: Angular Build
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
# - name: Setup Chrome
# uses: browser-actions/setup-chrome@latest
# - name: Export Chrome Binary
# run: export ${{ format('CHROME_BINARY={0}', steps.setup-chrome.outputs.chrome-path) }}
# - name: Test
# run: npm test