Skip to content

[Test] learn github action #3

[Test] learn github action

[Test] learn github action #3

name: learn-github-actions
run-name: ${{ github.actor }} is learning GitHub Actions
on:
pull_request:
schedule:
- cron: '0 19 * * 0'
jobs:
check-bats-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm install -g bats
- run: bats -v
blobtestubuntu20_04:
displayName: Blob Test Linux Ubuntu 20.04 LTS
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v4
with:
node-version: '20'
- script: |
npm ci --legacy-peer-deps
workingDirectory: "./"
displayName: "npm ci --legacy-peer-deps"
- script: |
npm run test:blob
workingDirectory: "./"
displayName: "npm run test:blob"
env: {}
- script: |
npm run test:blob:in-memory
workingDirectory: "./"
displayName: "npm run test:blob:in-memory"
env: {}