Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Bump async-graphql-axum from 6.0.11 to 7.0.3 in /backend #1294

Bump async-graphql-axum from 6.0.11 to 7.0.3 in /backend

Bump async-graphql-axum from 6.0.11 to 7.0.3 in /backend #1294

Workflow file for this run

name: Frontend Code
on:
push:
pull_request:
jobs:
test:
# Deduplicate jobs from pull requests and branch pushes within the same repo.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
name: Frontend Test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4.1.2
- name: Node Action
uses: actions/setup-node@v4.0.2
with:
node-version: 18.x
cache: "npm"
cache-dependency-path: frontend/
- name: yarn install
uses: borales/actions-yarn@v5.0.0
with:
cmd: install
dir: "frontend"
- name: yarn test
uses: borales/actions-yarn@v5.0.0
with:
cmd: test --passWithNoTests
dir: "frontend"
lint:
# Deduplicate jobs from pull requests and branch pushes within the same repo.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
name: Lint and Format
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4.1.2
- name: Node Action
uses: actions/setup-node@v4.0.2
with:
node-version: 18.x
cache: "npm"
cache-dependency-path: frontend/
- name: yarn install
uses: borales/actions-yarn@v5.0.0
with:
cmd: install
dir: "frontend"
- name: yarn eslint-lint
uses: borales/actions-yarn@v5.0.0
with:
cmd: eslint-lint
dir: "frontend"
- name: yarn format
uses: borales/actions-yarn@v5.0.0
with:
cmd: format
dir: "frontend"