Skip to content

Set outDir for builds #56

Set outDir for builds

Set outDir for builds #56

Workflow file for this run

name: Test
on:
push:
jobs:
test_code:
name: Test code
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install
run: |
npm ci
- name: Audit
run: |
npm audit
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm run test
- name: Build
run: |
npm run build && npm start
cat out/index.json
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}