Merge pull request #27 from github/dependabot/npm_and_yarn/tough-cook… #68
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: test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# check the node version from the .node-version file | |
- name: fetch node version | |
id: node-version | |
run: | | |
version=$(cat .node-version) | |
echo "version=${version}" >> $GITHUB_OUTPUT | |
- name: setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ steps.node-version.outputs.version }} | |
cache: npm | |
- run: npm ci | |
- run: npm run ci-test |