chore: update deps again to Svelte 4, Prettier 3 and several minor releases #1014
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
commit-lint: | |
name: Commit-Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: ${{ github.event.pull_request.commits }} | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Commit-Lint | |
uses: bugbundle/[email protected] | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.12.x | |
cache: "yarn" | |
- name: Yarn Install | |
run: yarn install --frozen-lockfile --immutable | |
- name: Dagger Build | |
run: yarn run build:ci | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.12.x | |
cache: "yarn" | |
- name: Yarn Install | |
run: yarn install --frozen-lockfile --immutable | |
- name: Run Linter | |
run: yarn run lint | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.12.x | |
cache: "yarn" | |
- name: Yarn Install | |
run: yarn install --frozen-lockfile --immutable | |
- name: Dagger Test | |
run: yarn run test | |
- name: Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
directory: coverage | |
fail-ci-if-error: true |