This repository has been archived by the owner on Apr 17, 2024. It is now read-only.
Bump ts-node from 8.10.1 to 10.9.2 (#12) #43
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
name: Continuous integration | |
on: [pull_request, push] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version-file: '.nvmrc' | |
- name: Create npm configuration | |
run: echo "//npm.pkg.github.com/:_authToken=${token}" >> ~/.npmrc | |
env: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run build | |
- run: npm run test |