Merge pull request #563 from 0xflotus/dependabot/npm_and_yarn/size-li… #219
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: Testing | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '**.ts' | |
- package.json | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
name: Testing | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Testing with Node 18 | |
uses: actions/setup-node@v3.8.1 | |
with: | |
node-version: 18 | |
- run: npm install | |
- run: npm run build | |
- run: npm test |