Skip to content

refactor: misspell of TriggerReturnType #43

refactor: misspell of TriggerReturnType

refactor: misspell of TriggerReturnType #43

Workflow file for this run

name: Build
on:
- push
- pull_request
jobs:
build:
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest']
node-version: ['20.x']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Dependencies
run: npm ci
- name: Build
run: npm run build
docker:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Test Docker Build
run: docker build -t myapp .