chore(win32-def): up #491
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
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: ci | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
container: node:current | |
timeout-minutes: 60 | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
strategy: | |
matrix: | |
node: ['lts/*'] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Cache | |
uses: actions/cache@v3 | |
id: cache-lerna | |
env: | |
cache-name: cache-lerna | |
with: | |
path: | | |
node_modules | |
node_modules/.cache/nx | |
package-lock.json | |
packages/*/.eslintcache | |
packages/*/.tsbuildinfo | |
packages/*/.vscode | |
packages/*/dist | |
packages/*/node_modules | |
packages/*/package-lock.json | |
key: ${{ runner.OS }}-build-${{ env.cache-name }}-${{ github.ref }}-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.OS }}-build-${{ env.cache-name }}-${{ github.ref }}-${{ matrix.node }}- | |
- name: Prepare | |
run: | | |
pwd | |
uname -a | |
export DEBIAN_FRONTEND=noninteractive | |
apt-get update -qq --yes > /dev/null | |
# apt-get upgrade -qq --yes > /dev/null | |
apt-get install -qq --yes --no-install-recommends bash dnsutils git jq locales net-tools wget > /dev/null | |
apt-get install -qq --yes postgresql-client libpq-dev > /dev/null | |
uname -a | |
npm -v && node -v | |
npm -g root | |
git --version | |
openssl version | |
cat /etc/*release | |
sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen | |
locale-gen | |
locale -a | |
netstat -tunpl | |
chmod a+w -R . | |
dig jaeger | |
- name: Inatall Dependencies | |
timeout-minutes: 15 | |
run: | | |
chown -R 1001:121 "/github/home/.npm" | |
# chmod a+w -R . | |
# DO NOT execute: npm config set unsafe-perm=true | |
export cwd=`pwd` | |
# .github/workflows/fix.sh | |
npm i --no-audit -g autocannon c8 lerna rollup zx | |
# npm run purge | |
npm run bootstrap | |
env: | |
CI: true | |
- name: Build | |
run: | | |
pwd | |
# chmod a+w -R . | |
whoami | |
export cwd=`pwd` | |
. .scripts/ci/ci-env.sh | |
.scripts/ci/ci-prepare.sh | |
# .github/workflows/fix.sh | |
npm run build --if-present | |
env: | |
CI: true | |
- name: Lint | |
run: | | |
export cwd=`pwd` | |
. .scripts/ci/ci-env.sh | |
.scripts/ci/ci-prepare.sh | |
npm run lint:s | |
npm run lint:cycle | |
env: | |
CI: true | |
# services: | |
# postgres: | |
# image: postgres:alpine | |
# ports: | |
# - 5432:5432 | |
# env: | |
# POSTGRES_DB: db_ci_test | |
# POSTGRES_USER: postgres | |
# POSTGRES_PASSWORD: postgres | |
# # needed because the postgres container does not provide a healthcheck | |
# options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |