Skip to content

release: version packages (#52) #106

release: version packages (#52)

release: version packages (#52) #106

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Check quality
runs-on: ubuntu-latest
strategy:
matrix:
command: ['lint', 'test']
env:
BSM_AUTH_CLIENT_ID: ${{ secrets.BSM_AUTH_CLIENT_ID }}
BSM_AUTH_CLIENT_SECRET: ${{ secrets.BSM_AUTH_CLIENT_SECRET }}
steps:
- uses: actions/checkout@v4
- name: Setup Node.js and Yarn
uses: actions/setup-node@v4
with:
node-version: '18'
- run: npm install -g yarn
- run: yarn install --frozen-lockfile
- name: Run commands
run: yarn ${{ matrix.command }}