Skip to content

build(deps): bump browserify-sign from 4.2.0 to 4.2.2 #444

build(deps): bump browserify-sign from 4.2.0 to 4.2.2

build(deps): bump browserify-sign from 4.2.0 to 4.2.2 #444

Workflow file for this run

# Workflow to verify the code style of the commit, that it builds correctly
# and make sure unit tests run too with all supported node versions
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
env:
PROJECT_CONFIG: ${{ github.workspace }}/examples/config.js
steps:
- uses: actions/checkout@v3
- name: copy env file
run: cp .env.example .env
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn
- name: Compile
run: yarn compile
- name: Build Client bundle
run: yarn build:prod
- name: Unit Test
run: yarn test
- name: UI Test
run: yarn test:ui
# Because of https://github.com/chairemobilite/transition/issues/531, version 18 needs an additional environment variable. When fixed, we can use a version matrix instead
build-and-test-18:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
env:
PROJECT_CONFIG: ${{ github.workspace }}/examples/config.js
steps:
- uses: actions/checkout@v3
- name: copy env file
run: cp .env.example .env
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn
- name: Compile
run: yarn compile
- name: Build Client bundle
run: yarn cross-env NODE_OPTIONS=--openssl-legacy-provider yarn build:prod
- name: Unit Test
run: yarn test
- name: UI Test
run: yarn test:ui
code-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install
run: yarn install
- name: Compile
run: yarn compile
- name: Lint
run: yarn lint
cargo-test:
name: Json2capnp
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo build
working-directory: ./services/json2capnp
- run: cargo test
working-directory: ./services/json2capnp