Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 15 Nov 04:42
· 194 commits to master since this release

1.0.3 (2019-11-15)

Typical use

name: main
on: [push]
jobs:
  build-and-test:
    runs-on: ubuntu-latest
    name: Build and test
    steps:
      - name: Checkout
        uses: actions/checkout@v1
      - uses: bahmutov/npm-install@v1
      - run: npm test

Bug Fixes