This repository has been archived by the owner on Nov 30, 2023. It is now read-only.
Add support for typescript 5 #45
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2021-2023 Nordcloud Oy or its affiliates. All Rights Reserved. | |
name: Test | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: package.json | |
- run: npm ci | |
- run: npm audit signatures | |
- run: npm run validate:all | |
- run: npm run test |