Skip to content

chore: initial release #1

chore: initial release

chore: initial release #1

Workflow file for this run

name: 'build-test'
on:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
- main
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm install
# Pull this image so it will already be there for unit tests later.
- run: docker pull ubuntu:22.10
- run: npm run all
- name: Run a docker container
run: docker run --name=test-container ubuntu:22.10 /bin/sh -c '>&2 echo error1 && echo test message && >&2 echo error2'
- name: test
uses: ./