Skip to content

Testing workflows

Testing workflows #4

Workflow file for this run

---
name: PR commit
on:
pull_request:
merge_group:
# TESTING, remove before merge
push:
branches:
- A0-3755
jobs:
main:
continue-on-error: true
strategy:
matrix:
step: ['lint', 'build']
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: ${{ matrix.step }}
run: |
yarn --frozen-lockfile
yarn ${{ matrix.step }}