Skip to content

chore: update changelog for v1.3.0 #96

chore: update changelog for v1.3.0

chore: update changelog for v1.3.0 #96

Workflow file for this run

---
name: API
on:
push:
paths:
- 'api/**'
- '.github/workflows/api.yaml'
defaults:
run:
working-directory: api/
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20.10']
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20.10']
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test