Skip to content

fix(deps): update rust crate sea-orm-migration to 0.12.15 #9

fix(deps): update rust crate sea-orm-migration to 0.12.15

fix(deps): update rust crate sea-orm-migration to 0.12.15 #9

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
jobs:
ci:
name: Build, Lint & Test
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Use Node.js v20
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
with:
node-version: 20
cache: yarn
registry-url: https://registry.yarnpkg.com/
- name: Select Rust Toolchain
run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Install Dependencies
run: yarn --immutable
- name: Run ESLint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test