Sha256: ade221885849ef218fc83e1e5717c6ba980b9654fc70ae3d0ff121b7ccfc952b
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
--- name: js-tests on: pull_request_target: push: branches: - main workflow_dispatch: inputs: {} jobs: build: name: Tests with Node ${{ matrix.node }} runs-on: "ubuntu-latest" if: | github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target' || github.actor != 'dependabot[bot]' strategy: fail-fast: false matrix: node: [<%= options.node_versions.map {|v| Gem::Version.new(v).canonical_segments.first.to_s.inspect }.join(", ") %>] steps: - uses: actions/checkout@v1 - uses: actions/cache@v2 with: path: vendor/bundle key: > ${{ runner.os }}-${{ matrix.node }}-npm-${{ hashFiles('package.json') }} - name: Set up Node uses: actions/setup-node@v2-beta with: node-version: ${{ matrix.node }} - name: Install npm dependencies run: | yarn install - name: Run Tests run: | yarn test:ci yarn lint
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dopstick-0.0.12 | lib/dopstick/generator/npm/templates/tests_workflow.erb |