Skip to content

feat: updated workflows, package versions and configs #58

feat: updated workflows, package versions and configs

feat: updated workflows, package versions and configs #58

Workflow file for this run

name: Test
on: [push, pull_request]
concurrency:
group: test
cancel-in-progress: true
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js and npm
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- name: Install dependencies
run: npm install
- name: Run tests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm run package
npm run lint
npm exec tsc
npm test