Skip to content

Bump image from 0.24.8 to 0.25.0 #417

Bump image from 0.24.8 to 0.25.0

Bump image from 0.24.8 to 0.25.0 #417

Workflow file for this run

name: Test
on:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
backend_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
path: target
key: backend-${{ runner.os }}-${{ hashFiles('Cargo.lock') }}
- name: Run tests
run: cargo test
frontend_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
path: app/node_modules
key: frontend-${{ runner.os }}-${{ hashFiles('app/yarn.lock') }}
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: 18.x
- name: Build
run: cd app && yarn install && yarn build
- name: Run tests
run: cd app && yarn run test
# build_docker:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Build
# run: docker build -t server .