Skip to content

fix(deps): update dependency cmd-ts to ^0.13.0 #167

fix(deps): update dependency cmd-ts to ^0.13.0

fix(deps): update dependency cmd-ts to ^0.13.0 #167

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
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:errors
- run: npm run build
- run: npm run test
env:
CI: true
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Build docker image
run: docker build -t relekang/graphql-rss-parser:${{ github.sha }} .