1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/.github/workflows/challenges.yml
2022-09-22 16:22:25 +02:00

47 lines
1.0 KiB
YAML

name: 'challenges'
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test-solutions:
runs-on: 'ubuntu-latest'
timeout-minutes: 30
steps:
- uses: 'actions/checkout@v3.0.0'
with:
fetch-depth: 0
- name: 'Use Docker'
uses: 'actions-hub/docker/cli@master'
env:
SKIP_LOGIN: true
- name: 'Use Node.js'
uses: 'actions/setup-node@v3.0.0'
with:
node-version: 'lts/*'
cache: 'npm'
- name: 'Install'
run: 'npm install'
- name: 'Build'
run: 'npm run build'
- name: 'Install programming-challenges'
run: 'npm install --global'
- uses: 'nrwl/last-successful-commit-action@v1'
id: 'last_successful_commit'
with:
branch: 'master'
workflow_id: 'challenges.yml'
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: 'Test'
run: 'programming-challenges run test --affected --base=${{ steps.last_successful_commit.outputs.commit_hash }}'