Update node to version 20 #81
Workflow file for this run
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 typescript-action" | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
- 'releases/*' | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source | ||
uses: actions/[email protected] | ||
- name: Install Node (v20) | ||
id: node-install | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 20.11 | ||
cache: 'npm' | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Build | ||
run: npm run build | ||
- name: Check for Execution | ||
uses: ./ | ||
with: | ||
skipOnCommitMsg: "sample" | ||
ghToken: ${{secrects.GH_TOKEN_3}} | ||
Check failure on line 28 in .github/workflows/test.yml GitHub Actions / Test typescript-actionInvalid workflow file
|
||
- name: Some Job | ||
run: echo "sample" |