mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 00:59:28 +01:00
17 lines
355 B
YAML
17 lines
355 B
YAML
name: build
|
|
on: [push]
|
|
jobs:
|
|
Explore-GitHub-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
cache: 'yarn'
|
|
- run: |
|
|
yarn
|
|
- name: List files in the repository
|
|
run: |
|
|
ls ${{ github.workspace }}
|