Skip to content

Update actions/upload-artifact action to v4 (#61) #109

Update actions/upload-artifact action to v4 (#61)

Update actions/upload-artifact action to v4 (#61) #109

Workflow file for this run

---
name: "Test njre"
on: [push, pull_request]
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions: read-all
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
name: Test
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ${{ matrix.os }}
timeout-minutes: 15
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4.0.0
with:
node-version: "18"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test