Skip to content

feat(setup): add yarn setup command for automated server resource setup #17

feat(setup): add yarn setup command for automated server resource setup

feat(setup): add yarn setup command for automated server resource setup #17

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn test:coverage
- uses: actions/upload-artifact@v7
if: always()
with:
name: coverage-report
path: coverage/
retention-days: 14
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn build