Skip to content

Merge pull request #21 from ArthurMJ96/fix-20 #28

Merge pull request #21 from ArthurMJ96/fix-20

Merge pull request #21 from ArthurMJ96/fix-20 #28

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
# cancel in-progress runs on new commits to same PR (gitub.event.number)
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
- run: pnpm run build