1
0
Fork 0
mirror of https://github.com/actions/setup-node synced 2025-04-09 18:35:51 +00:00
This commit is contained in:
eric sciple 2020-01-24 11:28:26 -05:00
parent 64609a2cc7
commit a96a3f1cee
2 changed files with 10 additions and 5 deletions
.github/workflows
__tests__

View file

@ -1,5 +1,12 @@
name: Main workflow
on: [push]
on:
pull_request:
push:
branches:
- master
- releases/*
jobs:
build:
name: Build

View file

@ -1,15 +1,13 @@
#!/bin/sh
if [[ -z "$1" ]]; then
if [ -z "$1" ]; then
echo "Must supply version argument"
exit 1
fi
node_version="$(node --version)"
echo "Found node version '$node_version'"
if [[ $node_version =~ "v$1" ]]; then
echo "Success. Version matches 'v$1'"
else
if [ -z "$(echo $node_version | grep v$1)" ]; then
echo "Unexpected version"
exit 1
fi