chore(deps): update dependency @types/node to v18.19.46 #2585
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
# This workflow will do a clean install of node dependencies, build the source | |
# code and run tests across different versions of node For more information | |
# see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Test and Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
on: push | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16.x" | |
- name: Keep npm cache around to speed up installs | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }} | |
- name: Install packages | |
run: npm ci | |
- name: Build TypeScript | |
run: npx tsc | |
- name: Run tests | |
run: npm run test | |
- name: Semantic release | |
continue-on-error: true | |
run: npx semantic-release |