mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-02-17 04:11:23 -05:00
13 lines
267 B
YAML
13 lines
267 B
YAML
|
name: learn-github-actions
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
check-bats-version:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
-uses: actions/checkout@v2
|
||
|
-uses: actions/setup-node@v2
|
||
|
with:
|
||
|
node-version: '14'
|
||
|
- run: npm install -g bats
|
||
|
- run: bats -v
|