Skip to content

⬆️ Update dependency @nuxt/typescript-build to v3 #4779

⬆️ Update dependency @nuxt/typescript-build to v3

⬆️ Update dependency @nuxt/typescript-build to v3 #4779

Workflow file for this run

name: πŸ§ͺ App build, lint and tests
on: [push, pull_request]
jobs:
build-app:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
runs-on: ${{ matrix.os }}
steps:
- name: πŸ›Ž Checkout
uses: actions/checkout@v4
- name: πŸ— Setup node env & πŸŽ‘ Yarn install cache
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: πŸ‘¨πŸ»β€πŸ’» Install dependencies
run: yarn
- name: πŸ₯» Build l'API
run: yarn build
tests:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
runs-on: ${{ matrix.os }}
steps:
- name: πŸ›Ž Checkout
uses: actions/checkout@v4
- name: πŸ— Setup node env & πŸŽ‘ Yarn install cache
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: πŸ‘¨πŸ»β€πŸ’» Install dependencies
run: yarn
# - name: πŸ§ͺ Run tests
# run: yarn test
lint:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
runs-on: ${{ matrix.os }}
steps:
- name: πŸ›Ž Checkout
uses: actions/checkout@v4
- name: πŸ— Setup node env & πŸŽ‘ Yarn install cache
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: πŸ‘¨πŸ»β€πŸ’» Install dependencies
run: yarn
- name: πŸ‘€ Run linter
run: yarn lint