Sha256: c973daf62a265884473b5bed165ff37df1d1ae6d9c8564147c7e84349fa2da9e
Contents?: true
Size: 563 Bytes
Versions: 15
Compression:
Stored size: 563 Bytes
Contents
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages name: test on: push: branches: - "*" pull_request: branches: [ 'master' ] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12 - run: npm install - run: npm run build - run: npm test
Version data entries
15 entries across 15 versions & 1 rubygems