Skip to content

Free-main

Free-main #41

Workflow file for this run

name: Test
on:
pull_request:
merge_group:
jobs:
test:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build
id: build
- name: Test
uses: ./.github/actions/run
with:
image: ${{ steps.build.outputs.tags }}
run: |
echo "Testing"
npm ci
npm run test
lint:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build
id: build
- name: Lint
uses: ./.github/actions/run
with:
image: ${{ steps.build.outputs.tags }}
run: |
echo "Linting"
npm ci
npm run lint