build(deps): bump nanoid from 3.3.7 to 3.3.8 #1222
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
# 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: [22.x] | |
env: | |
PROJECT_CONFIG: ${{ github.workspace }}/examples/config.js | |
steps: | |
- uses: actions/checkout@v4 | |
- name: copy env file | |
run: cp .env.example .env | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
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 | |
code-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use latest Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- name: Install | |
run: yarn install | |
- name: Compile | |
run: yarn compile | |
- name: Lint | |
run: yarn lint | |
check-format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use latest Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- name: Install | |
run: yarn install --frozen-lockfile | |
- name: Yarn format | |
run: yarn format | |
- name: Check git status | |
run: | | |
if [[ -n "$(git status --porcelain)" ]]; then | |
echo "Code formatting issues found. Please run 'yarn format' locally and commit changes." | |
git status | |
git diff | |
exit 1 | |
fi | |
cargo-test: | |
name: Json2capnp | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- run: cargo build | |
working-directory: ./services/json2capnp | |
- run: cargo test | |
working-directory: ./services/json2capnp |