This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
remove Post Start Exec from services #1940
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Make test build | |
on: | |
push: | |
branches-ignore: | |
- "main" | |
jobs: | |
build: | |
name: Make build and run testsuite | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: run linter, typecheck, prettier and make testbuild | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18.1 | |
- run: npm install -g yarn | |
- run: yarn install | |
# build will automatically run prebuild | |
- run: yarn build |