mirror of
https://github.com/actions/setup-node.git
synced 2025-04-22 09:21:00 +00:00
.
This commit is contained in:
parent
64609a2cc7
commit
a96a3f1cee
2 changed files with 10 additions and 5 deletions
9
.github/workflows/workflow.yml
vendored
9
.github/workflows/workflow.yml
vendored
|
@ -1,5 +1,12 @@
|
||||||
name: Main workflow
|
name: Main workflow
|
||||||
on: [push]
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- releases/*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
|
|
|
@ -1,15 +1,13 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
if [[ -z "$1" ]]; then
|
if [ -z "$1" ]; then
|
||||||
echo "Must supply version argument"
|
echo "Must supply version argument"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
node_version="$(node --version)"
|
node_version="$(node --version)"
|
||||||
echo "Found node version '$node_version'"
|
echo "Found node version '$node_version'"
|
||||||
if [[ $node_version =~ "v$1" ]]; then
|
if [ -z "$(echo $node_version | grep v$1)" ]; then
|
||||||
echo "Success. Version matches 'v$1'"
|
|
||||||
else
|
|
||||||
echo "Unexpected version"
|
echo "Unexpected version"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
Loading…
Add table
Reference in a new issue