1
0
mirror of https://github.com/django/django.git synced 2025-01-11 02:46:13 +00:00
django/.github/workflows/tests.yml
Mariusz Felisiak 200ae86de6
Enabled GitHub actions on push.
Co-authored-by: Tom Forbes <tom@tomforb.es>
2021-02-26 06:15:52 +01:00

29 lines
609 B
YAML

name: Tests
on:
pull_request:
push:
branches:
- master
jobs:
javascript-tests:
runs-on: ubuntu-latest
name: JavaScript tests
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '12'
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install
- run: npm test