Skip to content

Merge pull request #54 from atlassian-labs/no-issue/add-import-count-log #252

Merge pull request #54 from atlassian-labs/no-issue/add-import-count-log

Merge pull request #54 from atlassian-labs/no-issue/add-import-count-log #252

Workflow file for this run

name: Run Lint and All Tests
on:
push:
pull_request:
types: [assigned, opened, synchronize, reopened, edited]
jobs:
lint_and_test:
runs-on: ubuntu-22.04
env:
CI: false
steps:
- uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- run: yarn install --frozen-lockfile
- run: yarn ui:install --frozen-lockfile
- run: yarn run lint
- run: yarn run lint:typecheck
- run: yarn run ui:build
- name: Forge Tests
run: yarn test
- name: UI Tests
run: yarn ui:test