Skip to content

Remove image build from github action, not needed for mickhat's serve… #61

Remove image build from github action, not needed for mickhat's serve…

Remove image build from github action, not needed for mickhat's serve… #61

name: build-and-test-non-master
on:
push:
branches-ignore:
- 'master'
jobs:
docker:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run start