Skip to content

Display function errors #17

Display function errors

Display function errors #17

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: mskelton/setup-yarn@v3
with:
node-version: "22.x"
- run: yarn lint
build:
strategy:
fail-fast: false
matrix:
browser: [chrome, firefox]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js 22
uses: mskelton/setup-yarn@v3
with:
node-version: "22.x"
- run: TARGET=${{matrix.browser}} yarn build
- name: Archive
uses: actions/upload-artifact@v4
with:
name: atlassian-forge-dev-tools-${{matrix.browser}}
path: dist/**/*